CSS Rounded Corners Example
The following examples show CSS rounded corners in action.
All Corners the Same
border-radius: 20px;
Opposite Corners
border-radius: 20px 3px;
Custom Corners
border-radius: 20px 3px 8px 14px;
The following examples show CSS rounded corners in action.