gpt4 book ai didi

css - @fontface css 字体路径似乎不起作用

转载 作者:行者123 更新时间:2023-11-28 11:11:08 25 4
gpt4 key购买 nike

我有一个名为 project 的目录,其中有目录 htmlassetsjavascript。 Assets 目录有目录fontscsscss目录有一个名为typography的css文件.css.fonts 目录包含我正在使用的所有字体。

html 目录中,我有一个文件 typography.html。要使用我在 typography.css 中使用此代码的字体,它已在我的 html 文件中正确链接/引用。但是此代码在 typography.css

@font-face {
font-family: "LatoLight";
src: url('../fonts/lato-light-webfont.eot') format("embedded-opentype"), url('../fonts/lato-light-webfont.woff') format("woff"), url('../fonts/lato-light-webfont.ttf') format("truetype"), url('../fonts/lato-light-webfont.svg') format("svg");
}
h1{ font-family: LatoLight !important; }

没有产生预期的结果。我正在使用 twitter bootstrap 3。为什么这不起作用?

最佳答案

尝试:

@font-face {
font-family: 'LatoLight';
src: url('../fonts/lato-light-webfont.eot') format("embedded-opentype"),
url('../fonts/lato-light-webfont.woff') format("woff"),
url('../fonts/lato-light-webfont.ttf') format("truetype"),
url('../fonts/lato-light-webfont.svg') format("svg");
font-weight: normal;
font-style: normal;
}

我已将双引号改为单引号。这可能会有所作为,但我不确定。

否则这可能会有所帮助 Bootstrap 3 unable to display glyphicon properly我知道它是 glyphicons,但 firefox 可能只是对其他字体有问题。

关于css - @fontface css 字体路径似乎不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19176315/

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