CSS Border Radius Generator
Rounded corners, including the organic blob shapes.
CSS Border Radius Generator gives you independent control of each corner, and of the two radii within each corner, which is what produces the organic blob shapes used in modern illustration. It previews live and outputs the shorthand CSS, whether you need a simple 8px or an eight-value slash form.
Loading CSS Border Radius Generator…
Runs entirely on your device. No file or text you enter here is uploaded. How to verify it.
How to use CSS Border Radius Generator
- Drag the corner handles, or type values.
- Switch on the elliptical mode for blob shapes.
- Copy the CSS shorthand.
Questions about CSS Border Radius Generator
What does the slash in border-radius mean?
It separates horizontal from vertical radii.
border-radius: 60% 40% 30% 70% / 60% 30% 70% 40% gives each corner an ellipse rather than a circle, and that asymmetry is what makes a blob.Percentage or pixels?
Pixels give a fixed corner that stays the same as the element resizes. Percentages scale with the element, which is how you get a pill or a perfect circle from a square — and how you get blobs.
How do I make a squircle like an app icon?
Not with border-radius alone; a true squircle is a superellipse. The Squircle-ish preset gets close with an even 30% radius on every corner, and the note below the controls explains the large-radius-plus-mask approximation if you need to go further.
Why is my corner smaller than the value I set?
When the radii along one side add up to more than the length of that side, the browser scales every radius on the element down by the same factor so the corners still meet. A 200px radius on a box 100px tall therefore renders as 50px. Percentages avoid the surprise because they are measured against the box itself.
Does border-radius clip the content inside?
Only with
overflow: hidden on the same element. On its own, the radius rounds the background and the border but not the children, so a child image keeps its square corners and pokes through. Where there is a single child, putting the same radius on the image is the simpler fix.Is CSS Border Radius Generator really free, with no limits?
Yes. There is no account, no daily cap, no file-size tier and no watermark, because there is no server cost to recover. The site is funded by clearly disclosed partner recommendations on the Partners page, never by metering the tools.
Are my files or text uploaded when I use CSS Border Radius Generator?
No. Everything is processed by JavaScript running in your browser, on your device. You can verify it: open your browser's developer tools, switch to the Network tab, and use the tool. You will see no request carrying your data — because there is nowhere for it to go.