我知道我可以专门为这样的按钮添加一个字体真棒:
<a href="#" class="btn btn-default">Some text <i class="fa fa-chevron-right"></i></a>
但有没有办法可以创建一个CSS类,以便为所有按钮自动插入图标?
解决方法
这是Glyphicon和FontAwesome.在内容中添加你的unicode(在CSS文件中找到)并创建一个适合你情况的类名,或者只是将它添加到.btn或.btn-default,但是改变css以反映:
FontAwesome:http://jsbin.com/seguf/2/edit *
Glyphicon:http://jsbin.com/seguf/1/edit
HTML
<a href="#" class="btn btn-default btn-plus">Some text</a>
CSS
.btn-arrow:after { font-family: 'FontAwesome'; content: '\f054'; padding-left: 5px; position: relative; font-size: 90%; } .btn-plus:after { font-family: 'Glyphicons Halflings'; content: '\2b'; padding-left: 5px; position: relative; top: 1px; font-size: 90%; }