Windframe
Build Tailwind UIs that actually look good!
.jpg)
The rounded-br-sm class in Tailwind CSS applies a small (sm) border-radius to the bottom-right corner of an element.
The rounded-br-sm class in Tailwind CSS applies a small (sm) border-radius to the bottom-right corner of an element. It’s useful when you want subtle rounding only on that specific corner, creating softer visual edges without fully rounding all corners.
<div class="rounded-br-sm">...</div><div class="bg-blue-500 text-white p-4 rounded-br-sm"> This box has a small bottom-right corner radius.</div>Small Rounded Bottom-Right Corner
This box has a small bottom-right corner radius.
Add the rounded-br-sm class directly to your HTML element:
<div class="rounded-br-sm"> <!-- Your content here --></div>Use Tailwind's responsive prefixes to apply rounded-br-sm at specific breakpoints:
<div class="sm:rounded-br-sm md:rounded-br-sm lg:rounded-br-sm"> Responsive element</div>sm:rounded-br-sm — applies from 640px and upmd:rounded-br-sm — applies from 768px and uplg:rounded-br-sm — 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
