【发布时间】:2015-01-22 17:37:01
【问题描述】:
我的客户购买了要使用的字体。这是为其生成的代码:
@import url("//hello.myfonts.net/count/27ec77");
@font-face {font-family: 'FranklinGothicURWCon-Boo';
src: url('www.mybariatricsolutionsseminars.com/new/styles/webfonts/27EC77_0_0.eot');
src: url('www.mybariatricsolutionsseminars.com/new/styles/webfonts/27EC77_0_0.eot?#iefix') format('embedded-opentype'),
url('www.mybariatricsolutionsseminars.com/new/styles/webfonts/27EC77_0_0.woff') format('woff'),
url('www.mybariatricsolutionsseminars.com/new/styles/webfonts/27EC77_0_0.ttf') format('truetype');}
@font-face {font-family: 'FranklinGothicURWCon-Dem';
src: url('www.mybariatricsolutionsseminars.com/new/styles/webfonts/27EC77_1_0.eot');
src: url('www.mybariatricsolutionsseminars.com/new/styles/webfonts/27EC77_1_0.eot?#iefix') format('embedded-opentype'),
url('www.mybariatricsolutionsseminars.com/new/styles/webfonts/27EC77_1_0.woff') format('woff'),
url('www.mybariatricsolutionsseminars.com/new/styles/webfonts/27EC77_1_0.ttf') format('truetype');}
这适用于 Chrome,但不适用于 Firefox 或 Internet Explorer。看这里: http://www.mybariatricsolutionsseminars.com/new/
我尝试过的一些解决方案:
-
将此代码添加到 .htaccess。 (这不起作用。)
AddType font/ttf .ttf AddType font/eot .eot AddType font/otf .otf AddType font/woff .woff <FilesMatch "\.(ttf|otf|eot|woff)$"> <IfModule mod_headers.c> Header set Access-Control-Allow-Origin "*" </IfModule> </FilesMatch> 在源 URL 上添加
http://。 (这也没有用。)
【问题讨论】:
-
在 www 前添加 http://。此外,它在 Chrome 中不起作用,您可能在本地安装了字体。
-
您好,我仔细检查了它,当我删除上面的@font-face 代码时,字体在 Chrome 上不起作用。我还在所有这些上添加了 http://,但仍然没有运气。
标签: css internet-explorer firefox fonts font-face