How it works
- With "Link all corners" on, dragging any slider updates all four together for a uniform radius.
- Turn it off to shape asymmetric corners — useful for blob-like or organic card shapes.
- Elliptical corners let each corner have a different horizontal and vertical radius — this is how CSS creates true organic, leaf-like shapes rather than simple rounded rectangles.
- Presets: "Pill" makes a fully rounded capsule shape (great for buttons); "Organic blob" sets asymmetric elliptical corners for a soft, hand-drawn feel.
Craft CSS border-radius values visually — from simple rounded corners to complex organic shapes using the eight-value elliptical syntax — with a live preview and copyable CSS.
Frequently asked questions
What is the eight-value border-radius?
border-radius can take separate horizontal and vertical radii for each corner (the part before and after the slash), letting you create asymmetric, organic 'squircle' and blob-like shapes.
How do I make a circle?
Set border-radius to 50% on a square element and it becomes a perfect circle; on a rectangle it becomes an ellipse.
Can I round only some corners?
Yes — the generator exposes each corner individually, so you can round just the top two corners for a tab or card header, for example.
Does the output work everywhere?
border-radius is fully supported across all modern browsers with no prefix, so the copied CSS works as-is.