How do I change Bootstrap 3's glyphicons to white? [duplicate]

走远了吗. 提交于 2019-11-27 14:28:27

问题


This question already has an answer here:

  • Can I add color to bootstrap icons only using CSS? 14 answers

I've got the glyphicons in my page, but they are black. How do I set the glyphicons to white?


回答1:


You can just create your own .white class and add it to the glyphicon element.

.white, .white a {
  color: #fff;
}
<i class="glyphicon glyphicon-home white"></i>


来源:https://stackoverflow.com/questions/18070322/how-do-i-change-bootstrap-3s-glyphicons-to-white

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!