覆盖glyphicons以使用旧时尚背景属性

时间:2014-01-16 10:34:39

标签: css twitter-bootstrap

我需要一种方法来覆盖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
}

1 个答案:

答案 0 :(得分:0)

这适用于http://getbootstrap.com

.glyphicon.glyphicon-comment:before {
    content: none;
}

如果您不想保留图标的空间,也可以尝试

.glyphicon.glyphicon-comment {
    display: none
}