圓和橢圓

要建立,請定義具有相等 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%;
}