Skip to content

Challenge Add Rounded Corners with a Border Radius

SaintPeter edited this page · 1 revision
Clone this wiki locally

To make round corners it is all about border-radius and pixels.

You can specify a border-radius with pixels. This will affect how rounded the corners are.

.thick-green-border {
  border-color: green;
  border-width: 10px;
  border-style: solid;
  border-radius: 10px;
}
Something went wrong with that request. Please try again.