boostrap Glyphicons 字体问题

发布于 2022-09-01 23:19:46 字数 1348 浏览 16 评论 0

我按照网上的教程想要使用 boostrap Glyphicons,也拷贝fonts文件夹到目录下,下面是我的html文件,但是当我把fonts移到上一级目录就可以了,是为什么呢
sidebar.html

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="author" content="Quoniam">
    <title>SidebarMotion</title>
    <link rel="stylesheet" href="bootstrap.min.css">
    <script src="jquery-2.1.4.min.js"></script>
    <script src="bootstrap.min.js"></script>
</head>
<body>
    <div id="sidebar">
        <ul>
            <li class="item" id="prof">
                <span class="glyphicon glyphicon-search" aria-hidden="true"></span>
                <div>我</div>
            </li>
        </ul>
    </div>
</body>
</html>

但是结果如下是为什么:
图片描述

我的文档结构

├── bootstrap.min.css
├── bootstrap.min.js
├── bootstrap-theme.min.css
├── fonts
│   ├── glyphicons-halflings-regular.eot
│   ├── glyphicons-halflings-regular.svg
│   ├── glyphicons-halflings-regular.ttf
│   ├── glyphicons-halflings-regular.woff
│   └── glyphicons-halflings-regular.woff2
├── jquery-2.1.4.min.js
└── sidebar.html

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

情深缘浅 2022-09-08 23:19:46

因为看不到你的font-face的路径,目测你的目录结构错了,bootstrap.min.css默认是放在css目录下的,所以css文件中默认的font-face路径是../fonts/glyphicons-halflings-regular.xxx,所以尝试修改一下font-face的路径或者bootstrap.min.css文件放到css目录中

把梦留给海 2022-09-08 23:19:46

确实,应该是CSS里找不到图标字体了。

-残月青衣踏尘吟 2022-09-08 23:19:46

一楼正解,bootstrap里面坑就是这么多,用别人的东西就凡事得照着他的来

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文