html5 – 如何在bootstrap 3.0中使用glyphicons

前端之家收集整理的这篇文章主要介绍了html5 – 如何在bootstrap 3.0中使用glyphicons前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我已经在引导2.3中使用了glyphicons,但现在我已经升级到bootstrap 3.0。现在,我无法使用icon属性

在bootstrap 2.3中,下面的标签是工作

<i class="icon-search"></i>

在bootstrap 3.0,它不工作。

@R_502_323@

图标(glyphicons)现在包含在 separate css file..

标记已更改为:

<i class="glyphicon glyphicon-search"></i>

要么

<span class="glyphicon glyphicon-search"></span>

以下是Bootstrap 3:http://bootply.com/bootstrap-3-migration-guide的一个有用的列表

原文链接:https://www.f2er.com/html5/170216.html

猜你在找的HTML5相关文章