>div {
width: 60%;
height: 0; // 设置高为0,让padding撑起高
padding-bottom: 60%; /* 让div的高等于宽 */
border-radius: 50%;
color: white;
margin: 20px auto;
position: relative;
i{
font-size: 60px;
position: absolute;
top:50%;
left:50%;
transform:translate(-50%,-50%);
text-align: center;
}
}
网友评论