img标签使用src的方法展示图片,如果使用background-image属性就会多出边框
0358B59F394F28E1CDD2A165F6E8AB0E.jpghtml
<img width="20" height="20" class="icon">
css
.icon
bg-image('setting') // 封装的方法用于展示2x和3x图
width 20px
height 20px
background-size 20px 20px
background-repeat no-repeat
margin-top 15px
margin-left 15px
解决方法:
1.img标签 + 使用src的方式
2.span标签 + 以下css代码
display inline-block
bg-image('setting')
width 20px
height 20px
background-size 20px 20px
background-repeat no-repeat
margin-top 15px
margin-left 15px
网友评论