Tested tool guide
Tested browser tools
Checked August 16, 2026
What Border Radius CSS Preview Tool does, with a checked example
This tool draws a box with a control at each of its four corners. Adjust any corner, the box redraws, and a panel beside it shows the border-radius declaration ready to copy into a stylesheet. The corner most people get wrong is the order: the shorthand lists corners clockwise from the top-left (top-left, top-right, bottom-right, bottom-left), so the third value you paste belongs to the bottom-right corner, not the bottom-left. The preview shows what the declaration will render, so what you see on the box is what you get in the browser.
Worked example
A concrete input and expected output from the current implementation.
Input
Enter 24 into the top-left control, 8 into top-right, 16 into bottom-right, and 4 into bottom-left
->
Expected output
border-radius: 24px 8px 16px 4px;
The four-value shorthand is read clockwise starting from the top-left corner, so each number lands exactly on the corner it was set for: 24 top-left, 8 top-right, 16 bottom-right, 4 bottom-left.