Windframe
Build Tailwind UIs that actually look good!
.jpg)
The rounded-b class applies rounded corners to only the bottom-left and bottom-right corners of the element.
The rounded-b class applies rounded corners to only the bottom-left and bottom-right corners of the element.
<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"> Rounded bottom</p> <div class="rounded-b bg-blue-500 p-4 w-32 text-white font-semibold"> rounded-b</div></div>Rounded bottom
rounded-b
Add the rounded-b class directly to your HTML element:
<div class="rounded-b"> <!-- Your content here --></div>Use Tailwind's responsive prefixes to apply rounded-b at specific breakpoints:
<div class="sm:rounded-b md:rounded-b lg:rounded-b"> Responsive element</div>sm:rounded-b — applies from 640px and upmd:rounded-b — applies from 768px and uplg:rounded-b — 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
