CSS Border Radius Generator

Create rounded corners with a visual editor. Adjust each corner independently or uniformly. Copy the CSS instantly.

Ad space - AdSense banner will appear here

About CSS Border Radius

The border-radius property rounds the corners of an element's border. You can set all corners equally, each corner individually, or even create elliptical corners.

Syntax

FAQ

How do I make a perfect circle?

Set border-radius: 50% on a square element (equal width and height). For a non-square element, 50% creates an ellipse, which can also be useful.

What's the difference between px and % for border-radius?

Pixel values give fixed radii regardless of element size. Percentage values are relative to the element's dimensions — 50% always creates the maximum rounding (circle/ellipse), while a large px value may not fully round a large element.