rounded-ee-md: Tailwind CSS Border Radius class

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.


rounded-ee-md

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.

Syntax

html
<div class="rounded-ee-md">...</div>

Example Code

html
<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>

Preview

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.

How to Use

Add the rounded-ee-md class directly to your HTML element:

html
<div class="rounded-ee-md">
<!-- Your content here -->
</div>

Responsive Usage

Use Tailwind's responsive prefixes to apply rounded-ee-md at specific breakpoints:

html
<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 up
  • md:rounded-ee-md — applies from 768px and up
  • lg:rounded-ee-md — applies from 1024px and up

Customization

You 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

Start building stunning web UIs & websites!

Build from scratch or select prebuilt tailwind templates