Download This Plugin Back To jQueryScript
Add outside rounded corners to Tailwind CSS elements with ease using Tailwind Rounded Out plugin.
Notice that only the bottom corners are rounded out, this is because there's only two psuedo elements
available to create the corners. If you want to round out all sides, you can nest the element
rounded-out-lg
inside another rounded-out-lg
element:
<div class="rounded-out-lg">
<div class="rounded-out-lg">
Outer rounded corners!
</div>
</div>