我真的不知道发生了什么事。

我使用的是Font Squirrel的@Font Face Packs,它不能在Firefox和IE中使用,但是在Chrome和Android的浏览器中都可以正常使用,但我没有尝试过Safari。这些包应该可以无缝地工作,这是它们的全部重点,但事实并非如此。

所以这是我的代码

<link rel="stylesheet" href="https://dl.dropbox.com/u/70582811/Fonts/Orotund-fontfacekit/Orotund.css" type="text/css"/>




p{
font-family: OrotundHeavy,Georgia,Serif;
}


这只会影响Chrome中的字体,
你可以在这里看到它

提前致谢。

@font-face {
    font-family: 'OrotundHeavy';
    src: url('Orotund-webfont.eot');
    src: url('Orotund-webfont.eot?#iefix') format('embedded-opentype'),
         url('Orotund-webfont.woff') format('woff'),
         url('Orotund-webfont.ttf') format('truetype'),
         url('Orotund-webfont.svg#OrotundHeavy') format('svg');
    font-weight: normal;
    font-style: normal;

}

@font-face {
    font-family: 'OrotundCapitalsHeavy';
    src: url('OrotundCaps-webfont.eot');
    src: url('OrotundCaps-webfont.eot?#iefix') format('embedded-opentype'),
         url('OrotundCaps-webfont.woff') format('woff'),
         url('OrotundCaps-webfont.ttf') format('truetype'),
         url('OrotundCaps-webfont.svg#OrotundCapitalsHeavy') format('svg');
    font-weight: normal;
    font-style: normal;

}

最佳答案

通过直接访问在此处(404)相同。

您是否注意到Firefox中出现的错误?

时间戳记:03/12/06 14:42:19
错误:可下载字体:下载失败(字体系列:“ Open Sans”样式:正常重量:正常拉伸:正常src索引:2):URI错误或跨站点访问不允许
来源:https://www.dropbox.com/static/fonts/opensans/OpenSans-Regular-webfont.ttf
源文件:https://www.dropbox.com/static/css/main.css
行:0
源代码:
@ font-face {font-family:“ Open Sans”;字体样式:正常;字体粗细:400; src:url(“ / static / fonts / opensans / OpenSans-Regular-webfont.eot?#iefix”)format(“ embedded-opentype”),url(“ / static / fonts / opensans / OpenSans-Regular-webfont.woff “)format(” woff“),url(” / static / fonts / opensans / OpenSans-Regular-webfont.ttf“)format(” truetype“),url(” / static / fonts / opensans / OpenSans-Regular-webfont .svg#OpenSansRegular“)format(” svg“); }

关于css - 字体无法在Firefox或IE中使用,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/10870830/

10-09 07:45