例如这个 div 显示:
<div class="circle"></div
.circle {
width: 300px;
height: 300px;
background: red;
border-radius: 50%;
}
但是当宽度和高度以 % 为单位时,它会崩溃:
.circle {
width: 30%;
height: 30%;
background: red;
border-radius: 50%;
}
有没有办法让它显示?