Skip to content
MyDailyTool

Border Radius Generator

Build CSS border-radius values visually — symmetric, asymmetric, or fully custom per-corner shapes. Live preview with copy-ready CSS output for any border-radius combination.

border-radius: 20px 20px 20px 20px;

How to use the border radius generator

Drag the corner sliders. Toggle 'linked' to set all four corners at once.

Formula & explanation

border-radius: top-left top-right bottom-right bottom-left. Equal values can be condensed to one number.

Examples

Default: 20px on all corners.

Frequently asked questions

How is border-radius shorthand ordered?
The four-value shorthand goes clockwise: top-left, top-right, bottom-right, bottom-left. A single value applies to all four corners.
How do I make a perfect circle with CSS?
Set border-radius: 50% on an element that has equal width and height — or use border-radius: 9999px for a pill shape regardless of dimensions.
Can I set different horizontal and vertical radii?
Yes — use the elliptical form: border-radius: 40px / 20px; sets horizontal radius to 40px and vertical to 20px, creating an oval curve on each corner.
What unit should I use for border-radius?
px is most predictable for fixed-size elements. Use % when you want corners that scale with the element's size, such as a 50% circle.

Related design & css tools