Missing glyphicons in Bootstrap 2.3.2

2019-08-12 12:09发布

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条回答
欢心
2楼-- · 2019-08-12 12:52

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>
查看更多
登录 后发表回答