gpt4 book ai didi

css - @font-face 在 Firefox 中不起作用(但完全相同的代码在另一个站点上有效)

转载 作者:行者123 更新时间:2023-12-04 21:59:57 25 4
gpt4 key购买 nike

我有两个站点使用完全相同的@font-face 代码。字体文件托管在各自的站点上并且路径正确。

一个有效,一个无效。 (当然,它适用于我的个人网站,不适用于客户!)

我真的很感激对此有新的看法!

适用范围:

网址:http://example.com/

CSS 文件:http://365.example.com/index.php?css=photos/style.v.1275845154

相关代码:

@font-face {
font-family: 'JournalRegular';
src: url('./themes/fonts/journal.eot');
src: local('Journal Regular'), local('Journal'), url('./themes/fonts/journal.ttf') format('truetype');
}
body{
background: url("http://labs.example.com/personal/library/images/BG.jpg");
height: 100%;
width: 100%;
margin: 0;
padding: 0;
font-family: 'JournalRegular', Georgia, 'Times New Roman', Times, sans-serif;
color: #999;
}

它不起作用的地方:

网址:http://www.example.org/

CSS 文件:http://www.example.org/wp-content/themes/theme/style.css

相关代码:

@font-face {
font-family: 'JournalRegular';
src: url('http://example.org/wp-content/themes/theme/fonts/journal.eot');
src: local('Journal Regular'), local('Journal'), url('http://example.org/wp-content/themes/theme/fonts/journal.ttf') format('truetype');
}
.title h1{
float:left;
background:url(images/blt-ttl1?.png) no-repeat 0 4px;
margin:0px 0 5px;
/* padding:8px 0 8px 34px; */
color:#bd5f01;
letter-spacing: .5pt
font:24px/26px 'JournalRegular', Georgia, 'Times New Roman', Times, serif;
}

如有任何帮助,我们将不胜感激!

最佳答案

这个问题的最终解决方案是:

    <FilesMatch "\.(ttf|otf|eot)$">
<IfModule mod_headers.c>
Header set Access-Control-Allow-Origin "*"
</IfModule>
</FilesMatch>

将代码复制到 .htaccess 文件中,上传它,然后就完成了:firefox 将显示您的@font-face 字体。

希望对大家有用!

关于css - @font-face 在 Firefox 中不起作用(但完全相同的代码在另一个站点上有效),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3104546/

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