Border Radius Generator

Adjust each corner independently, or link them together.

Drag the corner handles to preview and copy the CSS — the preview updates live in your browser, with nothing uploaded.

/* single ad unit — insert AdSense/Ezoic code here */

How it works

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.

How rounded corners moved from images to CSS

Web designers once commonly used sliced background images to create rounded boxes. Native CSS border-radius support turned a visual effect that required image assets and extra markup into a simple style property.

Why percentages can create circles

When an element has equal width and height, a sufficiently large percentage radius---commonly 50%---rounds the corners into a circle. On a rectangular element, the same idea produces an ellipse-like outline.