gpt4 book ai didi

wordpress - 一些 Bootstrap 字形图标未加载

转载 作者:行者123 更新时间:2023-12-04 14:57:47 25 4
gpt4 key购买 nike

我有一个使用 Bootstrap Sass 源代码构建的 WordPress 主题。样式有效,但大多数字形图标都没有(只有星号和加号)。我正在将我的 Bootstrap 编译为 style.css相对于此,有一个名为 fonts 的文件夹包含字形图标(我设置了 $icon-font-path: "fonts/"; )这是我编译的 style.css 的片段显示字体路径正确:

@font-face { font-family: 'Glyphicons Halflings'; src: url("fonts/glyphicons-halflings-regular.eot"); src: url("fonts/glyphicons-halflings-regular.eot?#iefix") format("embedded-opentype"), url("fonts/glyphicons-halflings-regular.woff2") format("woff2"), url("fonts/glyphicons-halflings-regular.woff") format("woff"), url("fonts/glyphicons-halflings-regular.ttf") format("truetype"), url("fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular") format("svg"); }
.glyphicon { position: relative; top: 1px; display: inline-block; font-family: 'Glyphicons Halflings'; font-style: normal; font-weight: normal; line-height: 1; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }

例如,这些工作:
<span class="glyphicon glyphicon-asterisk" aria-hidden="true"></span>
<span class="glyphicon glyphicon-plus" aria-hidden="true"></span>

但这些不会:
<span class="glyphicon glyphicon-thumbs-up" aria-hidden="true"></span>
<span class="glyphicon glyphicon-heart" aria-hidden="true"></span>

这是 glyphicon 类的片段:
.glyphicon-asterisk:before { content: "\2a"; }
.glyphicon-plus:before { content: "\2b"; }
.glyphicon-star:before { content: \e006; }
.glyphicon-thumbs-up:before { content: \e125; }

我检查了网络选项卡以查看它是否正在加载字形字体,并且它们仅在字形工作时出现(星号,加号)。否则,字体文件甚至不会显示在网络选项卡中(甚至没有 404 )。

最佳答案

问题是内容值没有用引号括起来。这仍然是 www.getbootstrap.com 的问题。 sass 源码下载,不过是 recently fixedbootstrap-sass github repo 。

关于wordpress - 一些 Bootstrap 字形图标未加载,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28267666/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com