Windframe
Build Tailwind UIs that actually look good!
.jpg)
The rounded-xl class in Tailwind CSS applies an extra-large border radius to all corners of an element.
The rounded-xl class in Tailwind CSS applies an extra-large border radius to all corners of an element. It’s useful when you want a softer, more rounded look—often used in cards, buttons, and containers for a modern UI feel.
<div class="rounded-xl">...</div><div class="bg-gray-50 p-6 rounded-xl shadow"> Extra-large rounded corners make this box look smooth.</div>Extra-large rounded corners make this box look smooth.
Use rounded-xl when you want a more noticeably curved edge across all corners. It helps create a soft, approachable look and is a great choice for UI components that need visual emphasis without being too bold.
Add the rounded-xl class directly to your HTML element:
<div class="rounded-xl"> <!-- Your content here --></div>Use Tailwind's responsive prefixes to apply rounded-xl at specific breakpoints:
<div class="sm:rounded-xl md:rounded-xl lg:rounded-xl"> Responsive element</div>sm:rounded-xl — applies from 640px and upmd:rounded-xl — applies from 768px and uplg:rounded-xl — 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
