English 中文(简体)
Trouble with @font-face in IE
原标题:Trouble with @font-face in IE

I am trying to use a @font-face kit from fontsquirrel.com. I have pulled everything directly from the files they provide but when testing in IE9 using the developer tools I get the following results:

Browser Mode: IE9, Document Mode: IE9 standards - font renders correctly
Browser Mode: IE8, Document Mode: IE8 standards - font does not render
Browser Mode: IE7, Document Mode: IE7 standards - font does not render

令人奇怪和令人厌恶的是,我从@font-face 资料袋中看到了白.,在上述所有三种情况下都是正确的。 正如我所说的,所有东西都是从所提供的档案中复制/分发的。

我认为的唯一区别是,我正在使用超文本5号波雷尔布拉特。

任何想法都会受到高度赞赏。

www.un.org/Depts/DGACM/index_spanish.htm 对评论的答复:

http://www.fontsquirrel.com/fonts/bebas-neue”rel=“nofollow”http://www.fontsquirrel.com/fonts/bebas-neue

And the CSS I m using:

@font-face {
font-family: "BebasNeueRegular";
src: url( BebasNeue-webfont.eot? ) format( eot ),
     url( BebasNeue-webfont.woff ) format( woff ),
     url( BebasNeue-webfont.ttf ) format( truetype ),
     url( BebasNeue-webfont.svg#webfontfvFLBU0N ) format( svg );
font-weight: normal;
font-style: normal;
}
最佳回答

son, 您的<代码>font-face 编码与我下载的包裹中的内容不相称。 通知第四行(我有过一些评论的免责声明)不同于你。

@font-face {
    font-family:  BebasNeueRegular ;
    src: url( BebasNeue-webfont.eot );
    src: url( BebasNeue-webfont.eot?#iefix ) format( embedded-opentype ), /* !!! */
         url( BebasNeue-webfont.woff ) format( woff ),
         url( BebasNeue-webfont.ttf ) format( truetype ),
         url( BebasNeue-webfont.svg#BebasNeueRegular ) format( svg );
    font-weight: normal;
    font-style: normal;

}
问题回答

暂无回答




相关问题
CSS working only in Firefox

I am trying to create a search text-field like on the Apple website. The HTML looks like this: <div class="frm-search"> <div> <input class="btn" type="image" src="http://www....

image changed but appears the same in browser

I m writing a php script to crop an image. The script overwrites the old image with the new one, but when I reload the page (which is supposed to pickup the new image) I still see the old one. ...

Firefox background image horizontal centering oddity

I am building some basic HTML code for a CMS. One of the page-related options in the CMS is "background image" and "stretch page width / height to background image width / height." so that with large ...

Separator line in ASP.NET

I d like to add a simple separator line in an aspx web form. Does anyone know how? It sounds easy enough, but still I can t manage to find how to do it.. 10x!

热门标签