gpt4 book ai didi

css - @font face 不起作用

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

我正在尝试从我的服务器加载自定义字体,但它没有检索字体

我正在使用以下代码,有人可以告诉我我正在使用的代码格式正确吗。

代码:

@font-face {  
font-family: trcustomfont ;
src: url( http://content.sales-accredit.com/BTGOV/Fonts/Knowledge-Regular.otf ) format("opentype");
}

.customfont {
font-family: trcustomfont;
}

最佳答案

你应该这样写:-

@font-face {
font-family: 'MyWebFont';
src: url('webfont.eot'); /* IE9 Compat Modes */
src: url('webfont.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
url('webfont.woff') format('woff'), /* Modern Browsers */
url('webfont.ttf') format('truetype'), /* Safari, Android, iOS */
url('webfont.svg#svgFontName') format('svg'); /* Legacy iOS */
}

Or Read More About how to use custom fonts for our websites.....

关于css - @font face 不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13718559/

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