Windframe
Build Tailwind UIs that actually look good!
.jpg)
The rounded-bl-xl class applies an extra-large rounding to the bottom-left corner of an element.
The rounded-bl-xl class applies an extra-large rounding to the bottom-left corner of an element. This creates a dramatic curve on that specific corner while leaving the other corners unaffected.
<div class="flex flex-col justify-center items-center gap-2 p-3 rounded-t-md bg-blue-50"> <p class="text-gray-600 font-bold">Bottom-Left Corner Rounded Extra-Large</p> <div class="rounded-bl-xl bg-blue-500 p-4 w-36 text-white font-semibold"> rounded-bl-xl</div></div>Bottom-Left Corner Rounded Extra-Large
rounded-bl-xl
Add the rounded-bl-xl class directly to your HTML element:
<div class="rounded-bl-xl"> <!-- Your content here --></div>Use Tailwind's responsive prefixes to apply rounded-bl-xl at specific breakpoints:
<div class="sm:rounded-bl-xl md:rounded-bl-xl lg:rounded-bl-xl"> Responsive element</div>sm:rounded-bl-xl — applies from 640px and upmd:rounded-bl-xl — applies from 768px and uplg:rounded-bl-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
