8plus给图片border-radius:50%;border:1px solid red;
圆形,边框不是圆的,边框会多出一些
用伪元素解决了
.usee{
width:120rpx;
height:120rpx;
border-radius: 50%;
box-sizing: border-box;
position: relative;
z-index: -1;
}
.usee::before{
content: ‘’;
display: block;
height: 120rpx;
border:1px solid red;
position: absolute;
left: 0;
top: 0;
z-index: 100;