问题
我想在文字后面显示一个glyphicon图标.在文档中,只有以下示例可以看到:http://getbootstrap.com/components/#glyphicons-examples
<div class="glyphicon glyphicon-chevron-right">Next</div>
我的解决方案
解决方案1
<div>Next<span class="glyphicon glyphicon-chevron-right"></span></div>
解决方案2
#next.custom-chevron-right:after { font-family: 'Glyphicons Halflings'; content: "\e080"; }
<div id="next" class="glyphicon custom-chevron-right">Next</div>
来源例:bootply
我的问题
有没有更好的方式来做只是与引导类?
谢谢!