Windframe
Build Tailwind UIs that actually look good!
.jpg)
The rounded-ee class in Tailwind CSS applies the default border-radius to the end-end corner of an element.
The rounded-ee class in Tailwind CSS applies the default border-radius to the end-end corner of an element. In a left-to-right (LTR) layout, this targets the bottom-right corner, while in right-to-left (RTL) layouts, it targets the bottom-left corner. It’s part of Tailwind’s logical corner rounding utilities designed for internationalized, direction-aware UI.
<div class="rounded-ee">...</div><div class="bg-purple-600 text-white font-semibold p-4 rounded-ee"> This element has a rounded bottom-end corner.</div>This element has a rounded bottom-end corner.
Add the rounded-ee class directly to your HTML element:
<div class="rounded-ee"> <!-- Your content here --></div>Use Tailwind's responsive prefixes to apply rounded-ee at specific breakpoints:
<div class="sm:rounded-ee md:rounded-ee lg:rounded-ee"> Responsive element</div>sm:rounded-ee — applies from 640px and upmd:rounded-ee — applies from 768px and uplg:rounded-ee — applies from 1024px and upYou can extend or override this utility in your tailwind.config.js. See the Tailwind CSS documentation for details on customizing your theme.
Windframe is an AI visual editor for rapidly building stunning web UIs & websites
