Missing glyphicons in Bootstrap 2.3.2

僤鯓⒐⒋嵵緔 提交于 2019-12-13 00:54:05

问题


i downloaded glyphicons from here, but can't load some of these icons in Boostrap 2.3.2. I tried to load phone and chat icons, but buttons are empty without icons. In browser console are no errors. How can i show these icons in Bootstrap 2.3.2 please?

<a class="btn btn-small" href="#"><i class="icon-chat"></i></a>
<a class="btn btn-small" href="#"><i class="icon-phone"></i></a>

回答1:


If you have the css and the png in the correct paths, it looks like the proper use is:

<a class="btn btn-small" href="#"><i class="icon-large icon-chat"></i></a>
<a class="btn btn-small" href="#"><i class="icon-large icon-phone"></i></a>


来源:https://stackoverflow.com/questions/26609569/missing-glyphicons-in-bootstrap-2-3-2

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