gpt4 book ai didi

html - 声明此 .otf 字体有什么问题?

转载 作者:太空宇宙 更新时间:2023-11-04 04:03:07 26 4
gpt4 key购买 nike

这是我的声明代码:

@font-face {
font-family: 'MyOwnFont';
font-style: normal;
font-weight: 400;
src: url('../webfonts/MyOwnFont.otf') format("opentype");
}

但是当我使用它时:

body
{
font-family:'MyOwnFont';
}

我在网页上看不到它。声明有什么问题?

最佳答案

通常最好通过 web-font 生成器运行字体,例如 http://www.fontsquirrel.com/tools/webfont-generator

这样,它将生成 otfttf 等版本的字体,这将得到更好的支持,而不仅仅是对 otf 的引用字体。

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

关于html - 声明此 .otf 字体有什么问题?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21757081/

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