本文介绍了如何将 Bootstrap 3 的字形更改为白色?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我的页面中有字形,但它们是黑色的.如何将字形设置为白色?
I've got the glyphicons in my page, but they are black. How do I set the glyphicons to white?
推荐答案
您可以创建自己的 .white
类并将其添加到 glyphicon 元素中.
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>
这篇关于如何将 Bootstrap 3 的字形更改为白色?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!