[CSS 3] Use the Border-Radius CSS Property to Define Horizontal and Vertical Radius

In this lesson, we dive into using CSS border-radius. We will look at how you can use it to create not only basic shapes but complex ones too.

We will start with a shorthand notation that allows us to define a uniform radius for an element. Then we will progress onto a longhand notation. That will give us the power to define the horizontal and vertical radius for each corner of an element.

 

.rect {
  border: 1px solid black;
  width: 200px;
  height: 200px;
  
  border-radius: 50% 50% 0 0 / 100% 100% 0 0
}
.rect {
  border: 1px solid black;
  width: 200px;
  height: 200px;
  
  border-radius: 50% 50% 0 0 / 100% 100% 0 0
}

 

 

See the Pen border-radius by Zhentian Wan (@Answer1215) on CodePen.

[CSS 3] Use the Border-Radius CSS Property to Define Horizontal and Vertical Radius

上一篇:.NET Core使用AngleSharp网络数据采集


下一篇:解决【npm ERR! Unexpected end of JSON input while parsing near '...sh_time":141072930277'】方案