Utilizor
Contact Us

CSS Rounded Corners

With the CSS border-radius property, you can give any element 'rounded corners'.

CSS Rounded Corners

The border-radius property defines the radius of the element's corners.

This property allows you to add rounded corners to elements!

Example 1: Rounded Corners for an Element

Rounded Corners

Example 2: Rounded Corners for an Image

Circle

Example 3: Specific Corners

You can specify each corner separately.

Specific Corners

Example

div {
  border-radius: 25px;
  background: #73AD21;
  padding: 20px; 
  width: 200px;
  height: 150px; 
}