rounded-ee: Tailwind CSS Border Radius class

The rounded-ee class in Tailwind CSS applies the default border-radius to the end-end corner of an element.


rounded-ee

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.

Syntax

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

Example Code

html
<div class="bg-purple-600 text-white font-semibold p-4 rounded-ee">
This element has a rounded bottom-end corner.
</div>

Preview

This element has a rounded bottom-end corner.

How to Use

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

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

Responsive Usage

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

html
<div class="sm:rounded-ee md:rounded-ee lg:rounded-ee">
Responsive element
</div>
  • sm:rounded-ee — applies from 640px and up
  • md:rounded-ee — applies from 768px and up
  • lg:rounded-ee — 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