微信小程序 MiniProgram
ICON
index.wxml
<view class="storeTel"><view class="icon-tel"></view>13800138000</view>
index.wxss
.icon-tel{
background: url('https://xxx/shops/icon-tel.png') no-repeat center;
background-size: 100% 100%;
width: 28rpx;
height: 28rpx;
display: inline-block;
position: relative;
top:6rpx;
margin-right: 4rpx;
}
调整点:
width,height,要跟图标的尺寸一致,否则会变形
top, 如果需要跟文字一起排版,通常文字会有上边距,要想跟文字齐平,则需要设置top值
magin-right,跟文字排版时,跟文字的间隔