样式表不会在Firefox,IE和Opera中加载

时间:2013-06-08 07:03:38

标签: css wordpress internet-explorer firefox font-face

我的wordpress网站在FF,IE和Opera中无法正确加载但是在Chrome中它没关系。 我看过这两个问题,但他们没有帮助:
IE/Firefox/Opera not picking up stylesheet - Webkit okay
CSS not loading in Firefox, Opera and IE - Chrome and Safari works just fine
任何帮助?

1 个答案:

答案 0 :(得分:1)

问题是因为字体! 我在style.css中声明了一个rtl true type字体,如下所示:

@font-face {
    font-family: 'NewSampleFont’;
    src:url('fonts/NewSampleFont.eot?#’) format(‘eot’),    
          url('fonts/NewSampleFont.woff') format('woff'),
          url(‘fonts/NewSampleFont.ttf’) format(‘truetype’); 
}

但我忘了在我的reset.css文件的第一个开头添加相同代码