在Bootstrap glyphicon象的白色长方形背景

时间:2018-03-16 06:58:55

标签: css twitter-bootstrap

我对Bootstrap glyphicon图标有一个恼人的问题。图标在图像周围有白色矩形背景,在彩色背景上使用时看起来非常难看。问题示例:

enter image description here

我究竟如何将其更改为透明红色背景?

2 个答案:

答案 0 :(得分:1)

这可以是spanibackground的现有css ...如果您在span中使用glyphicon,请尝试以下

span.glyphicon{
  background: transparent;
}

答案 1 :(得分:1)



table {
  width: 100%;
}
tbody {
  background: yellow;
}
span {
  background: blue;
}
span.glyphicon {
  background: transparent;
}

<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
<table>
<tbody>
  <tr>
    <td>Hello</td>
    <td><span class="glyphicon glyphicon-plus-sign"></span></td>
  </tr>
  <tr>
    <td>Hello</td>
    <td><span class="glyphicon glyphicon-plus-sign"></span></td>
  </tr>
</tbody>
</table>
&#13;
&#13;
&#13;