Windframe
Build Tailwind UIs that actually look good!
.jpg)
The rounded-tl-lg class in Tailwind CSS applies a large border-radius to the top-left corner of an element.
The rounded-tl-lg class in Tailwind CSS applies a large border-radius to the top-left corner of an element. It’s useful when you want more pronounced rounding on just that corner, often for card layouts, modals, or tabs.
<div class="rounded-tl-lg">...</div><div class="bg-green-600 text-white font-semibold p-4 rounded-tl-lg border"> Top-left corner is large and rounded</div>Top-left corner is large and rounded
Use rounded-tl-lg when you want to add larger rounding to just the top-left corner of an element. It gives a soft, clean edge and is easy to combine with other corner utilities for precise design control.
Add the rounded-tl-lg class directly to your HTML element:
<div class="rounded-tl-lg"> <!-- Your content here --></div>Use Tailwind's responsive prefixes to apply rounded-tl-lg at specific breakpoints:
<div class="sm:rounded-tl-lg md:rounded-tl-lg lg:rounded-tl-lg"> Responsive element</div>sm:rounded-tl-lg — applies from 640px and upmd:rounded-tl-lg — applies from 768px and uplg:rounded-tl-lg — 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
