Windframe
Build Tailwind UIs that actually look good!
.jpg)
The rounded-ee-md class in Tailwind CSS applies a medium (md) border-radius to the end-end corner of an element — which is the bottom-end corner in left-to-right (LTR) layouts.
The rounded-ee-md class in Tailwind CSS applies a medium (md) border-radius to the end-end corner of an element — which is the bottom-end corner in left-to-right (LTR) layouts. In right-to-left (RTL) layouts, it becomes the bottom-start corner. This is part of Tailwind’s logical (direction-aware) corner utilities, helping you build flexible, internationalized UI.
<div class="rounded-ee-md">...</div><div class="bg-green-500 text-white p-4 font-semibold rounded-ee-md"> This box has a medium-radius on the bottom-end corner.</div>This box has a medium-radius on the bottom-end corner.
Use rounded-ee-md when you want a medium border radius on the bottom-end corner of an element, while keeping your layout direction-aware for both LTR and RTL environments.
Add the rounded-ee-md class directly to your HTML element:
<div class="rounded-ee-md"> <!-- Your content here --></div>Use Tailwind's responsive prefixes to apply rounded-ee-md at specific breakpoints:
<div class="sm:rounded-ee-md md:rounded-ee-md lg:rounded-ee-md"> Responsive element</div>sm:rounded-ee-md — applies from 640px and upmd:rounded-ee-md — applies from 768px and uplg:rounded-ee-md — 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
