当我在localhost上复制时,Bootstrap glyphicon会更改图标

时间:2015-07-30 14:16:24

标签: css twitter-bootstrap twitter-bootstrap-3 glyphicons

我使用bootstrap显示glyphicon图标,在线链接工作正常,当我在本地复制bootstrap.min.css时,图标无法正常工作!!!

    <link rel="stylesheet" href="bootstrap.css">
    <p>Search icon: <span class="glyphicon glyphicon-search"></span></p>

给出:enter image description here

<link rel="stylesheet" href="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css">
<p>Search icon: <span class="glyphicon glyphicon-search"></span></p>

给出:enter image description here

我想在本地保留css以减少加载时间

3 个答案:

答案 0 :(得分:0)

您确定为本地Bootstrap副本引用了正确的路径吗?你的href指向bootstrap.css。你在谈论bootstrap.min.css。

检查开发人员是否识别引导程序。这应该提供一些信息。

答案 1 :(得分:0)

我认为poroblem是bootstrap.min.css指向同一路径中的fonts/glyphicons-halflings-regular.woff2fonts/glyphicons-halflings-regular.wofffonts/glyphicons-halflings-regular.ttf。所以我也要复制它们:) enter image description here 谢谢大家

答案 2 :(得分:0)

您必须在此链接http://getbootstrap.com/getting-started/#download下载完整的bootstrap包并放入local-host文件夹

然后你可以像这样链接样式表

<link rel="stylesheet" href="http://127.0.0.1/xxxxxxx/css/bootstrap.min.css">

我认为这可能会对你有所帮助