这个是当时工作时在网上找到的,不知道是哪篇博客了
<style>
/*设置圆形*/
.circle {
/*宽高相等*/
height: 50px;
width: 50px;
/*设置圆角边框,尺寸为宽高的一半,就是正圆*/
border-radius: 25px;
/*背景色*/
background-color: blue;
/*设置block才能显示出来*/
display: inline-block;
}
.blue {
background-color: blue;
}
.red {
background-color: red;
}
</style>
<body>
<span class="circle blue"></span>
<span class="circle red"></span>
</body>
结果
前端需求设置头像
<span style="height: 50px; width: 50px; text-align: center; line-height: 50px; border-radius: 25px; background: skyblue; color: white; display: inline-block;">yu</span>
结果