CSS

border-radius

Border Radius

If you want to add rounded effect to your shape, use border-radius.

div {
  border-radius: 0px 0px 0px 0px;
  /* top, right, bottom, left */
}
  • top
  • right
  • bottom
  • left

You can use one value that effect the whole corners of an shape.

div {
  border-radius: 0px;
}

10px

Value