Windframe
Build Tailwind UIs that actually look good!
.jpg)
The rounded-none class in Tailwind CSS removes all border-radius from an element.
The rounded-none class in Tailwind CSS removes all border-radius from an element. It forces the corners to be completely sharp, which is useful when you want to override inherited rounding or create a clean, square-cornered design.
<div class="rounded-none">...</div><div class="bg-gray-200 p-4 rounded-none border"> This box has no rounded corners.</div>This box has no rounded corners.
Use rounded-none when you want sharp, square corners or need to override other border-radius utilities. It’s helpful for creating clean UIs, disabling rounding in specific cases, or working with strict design systems.
Add the rounded-none class directly to your HTML element:
<div class="rounded-none"> <!-- Your content here --></div>Use Tailwind's responsive prefixes to apply rounded-none at specific breakpoints:
<div class="sm:rounded-none md:rounded-none lg:rounded-none"> Responsive element</div>sm:rounded-none — applies from 640px and upmd:rounded-none — applies from 768px and uplg:rounded-none — 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
