gpt4 book ai didi

css - CSS3 中的@font-face 错误

转载 作者:行者123 更新时间:2023-11-28 12:49:26 24 4
gpt4 key购买 nike

当我尝试将下面显示的代码添加到我的 CSS3 样式表时,出现错误说 'format('xxxx')' 不是 src 属性的有效值。如果我删除“格式”之前的空格,错误就会消失,但我不知道是否正在处理代码。

我快累坏了。有人有什么想法吗?

谢谢,

尤里

@font-face {
font-family: 'arialregular';
src: url('arial-webfont.eot');
src: url('arial-webfont.eot?#iefix') format('embedded-opentype'),
url('arial-webfont.woff') format('woff'),
url('arial-webfont.ttf') format('truetype'),
url('arial-webfont.svg#arialregular') format('svg');
font-weight: normal;
font-style: normal;
}

最佳答案

你可以尝试使用下面的这个,替换路径

@font-face {
font-family: 'LatoLight';
src: url('../fonts/Lato-Lig-webfont.eot');
src: url('../fonts/Lato-Lig-webfont.eot?#iefix') format('embedded-opentype'),
url('../fonts/Lato-Lig-webfont.woff') format('woff'),
url('../fonts/Lato-Lig-webfont.ttf') format('truetype'),
url('../fonts/Lato-Lig-webfont.svg#LatoLight') format('svg');
font-weight: normal;
font-style: normal;
}

关于css - CSS3 中的@font-face 错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17117003/

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