关于bootstrap glyphicon glyphicon-th-list有一个白色背景

时间:2016-06-02 14:19:43

标签: html css twitter-bootstrap

如何删除白色背景?我已设置background-color:transparent但仍有白色背景。

这是一张图片:

enter image description here

我的HTML代码:

<span class="glyphicon glyphicon-th-list list-btn" data-toggle="collapse" data-target="#menu-content"></span>

这是我的CSS:

.glyphicon-th-list {
 font-size: 170%;
 background-color: transparent;
 color:red;
 }

已更新

感谢所有评论和回复的人。我自己修好了。我回过头来阅读我写的整个代码,发现list-btn:before提出了问题。

.left-header-container  .list-btn:before{
    background: white; <<---delete problem slove
    left: 0;
}   

1 个答案:

答案 0 :(得分:1)

您是否尝试在背景颜色的末尾添加!important?有些东西正在应用背景。检查页面上的元素,找出背景的来源。可能来自你的list-btn风格?你能提供吗?