色婷婷狠狠18禁久久YY,CHINESE性内射高清国产,国产女人18毛片水真多1,国产AV在线观看

css怎么畫實心圓

韓冬雪1年前6瀏覽0評論

CSS畫實心圓的方法

.circle {
width: 100px;
height: 100px;
border-radius: 50%;
background-color: red;
}

其中,widthheight設(shè)置圓的大小,border-radius設(shè)置圓的半徑為長寬的50%,background-color設(shè)置圓的顏色。

需要注意的是,當(dāng)長寬不相等時,border-radius設(shè)置的半徑會按照少的一邊為準(zhǔn)。

.unequal-circle {
width: 100px;
height: 50px;
border-radius: 25% 50%;
background-color: blue;
}

在這個例子中,border-radius設(shè)置了兩個值,分別為上下左右圓角的半徑和左下和右上圓角的半徑,因此可以畫出橢圓形。

以上就是使用CSS畫實心圓的方法,常見的應(yīng)用包括制作按鈕、圖標(biāo)和裝飾等。