.tags .tag1,.tags .tag2{
position: relative;
top: 25%;
margin-right: 20rpx;
font-size: 26rpx;
color: orange;
opacity: 0.7;
box-sizing: border-box;
height: 42rpx;
border: 4rpx solid orange;
letter-spacing: 2rpx;
}
就比如说我上面这个代码写出来,根据图片可以看出,文字跟边框的距离太紧凑了,想要距离大一点是通过什么属性来设置呢?我记得是有的,我以前写过给忘了。
.tag1, .tag2{ margin-right: 20rpx; font-size: 26rpx; color: orange; height: 42rpx; border: 4rpx solid orange; padding: 0 6rpx; }
padding
padding
padding