02-img标签设置背景色会出现边框

img标签使用src的方法展示图片,如果使用background-image属性就会多出边框

02-img标签设置背景色会出现边框_第1张图片
0358B59F394F28E1CDD2A165F6E8AB0E.jpg

html


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

你可能感兴趣的:(02-img标签设置背景色会出现边框)