圆形
使用纯CSS创建一个圆形形状。
- 使用
border-radius: 50%
将元素的边框曲线化,以创建一个圆形。 - 由于圆形在任意给定点的半径相同,所以
width
和height
必须相等。不同的值将创建一个椭圆。
<div class="circle"></div>
.circle {
border-radius: 50%;
width: 32px;
height: 32px;
background: #9C27B0;
}
使用纯CSS创建一个圆形形状。
border-radius: 50%
将元素的边框曲线化,以创建一个圆形。width
和height
必须相等。不同的值将创建一个椭圆。<div class="circle"></div>
.circle {
border-radius: 50%;
width: 32px;
height: 32px;
background: #9C27B0;
}