Replies: 1 comment
-
|
As per the CSS Border spec https://www.w3.org/TR/css-backgrounds-3/#corner-overlap
That's why you needed to add 3500px to start seeing something: proportionally reduce So the only way to preciselly give An example: for this button with <button class="h-10 px-6 bg-indigo-200 text-indigo-900 btn">Lorem ipsum</button>.btn {
border-radius: 1.25rem 1.25rem .5rem 1.25rem;
}I don't know if would be possible for Tailwind to provide different rounded border utilities given the amount of sizes an element could have (taking into account height, padding, line-height, etc.) |
Beta Was this translation helpful? Give feedback.

Uh oh!
There was an error while loading. Please reload this page.
-
Hello!
When attempting to create a button that is
rounded-fullbut with a single, less round corner viarounded-br-lgI am not seeing the behavior I'd expect given the rest of the composability of tailwind.rounded-fullsetsborder-radius: 9999pxand it seems the only way to approximaterounded-br-lgwas to addborder-bottom-right-radius: 3500pxBeta Was this translation helpful? Give feedback.
All reactions