圆和椭圆

要创建,请定义具有相等 widthheight正方形 )的元素,然后将此元素的 border-radius 属性设置为 50%

截图

HTML

<div class="circle"></div>

CSS

.circle {
   width: 50px;
   height: 50px;
   background: rgb(246, 156, 85);
   border-radius: 50%;
}

椭圆

一个椭圆是相似于圆形,而是具有用于 widthheight 不同的值。

截图

HTML

<div class="oval"></div>

CSS

.oval {
  width: 50px;
  height: 80px;
  background: rgb(246, 156, 85);
  border-radius: 50%;
}