我需要一种方法来覆盖Bootstrap的glyphicon样式并使用传统的CSS背景属性而不会破坏现有的标记(例如<i class="glyphicon glyphicon-comment"></i>
)
这是我的尝试,但它仍然无效:
.glyphicon-comment:before {
content: none;
}
.glyphicon-comment {
background: transparent url('someurl') no-repeat 0 -380px;
}
修改:
通过为glyphicon类指定hegth和width来解决,如下所示:
.glyphicon {
width:14px;height:14px
}
答案 0 :(得分:0)
.glyphicon.glyphicon-comment:before {
content: none;
}
如果您不想保留图标的空间,也可以尝试
.glyphicon.glyphicon-comment {
display: none
}