gpt4 book ai didi

CSS - 我可以像这样使用@font-face :

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

我想使用来自其他网站的字体 url,可以吗?

@font-face {
font-family: 'font';
src: url('http://example.com/font.eot?#') format('eot'),
url('http://example.com/font.woff') format('woff'),
url('http://example.com/font.ttf') format('truetype');
font-weight: normal;
font-style: normal;
}

我试过了,但没用!

最佳答案

不,您不能从另一个 URL 导入字体文件,因为它 violates cross origin specs .您必须将 css 文件放在该域的同一目录中(http://example.com/fonts.css):

/*fonts.css*/

@font-face {
font-family: 'font';
src: url('font.eot?#') format('eot'),
url('font.woff') format('woff'),
url('font.ttf') format('truetype');
font-weight: normal;
font-style: normal;
}

然后在您的样式表中,导入它:

@import url("http://example.com/fonts.css");

或者,在您的文档中链接到它 <head> :

<link rel="stylesheet" href="http://example.com/fonts.css">

关于CSS - 我可以像这样使用@font-face :,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33696111/

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