我很难理解为什么我的字体不能在firefox中工作,在chrome中工作得很好,这就是我的css:

@font-face {
    font-family: 'ArvoRegular';
    src: url('http://cf.shopious.com/fonts/arvo-fontfacekit/arvo-regular-webfont.eot');
    src: url('http://cf.shopious.com/fonts/arvo-fontfacekit/arvo-regular-webfont.eot?#iefix') format('embedded-opentype'),
         url('http://cf.shopious.com/fonts/arvo-fontfacekit/arvo-regular-webfont.woff') format('woff'),
         url('http://cf.shopious.com/fonts/arvo-fontfacekit/arvo-regular-webfont.ttf') format('truetype'),
         url('http://cf.shopious.com/fonts/arvo-fontfacekit/arvo-regular-webfont.svg#arvoregular') format('svg');
    font-weight: normal;
    font-style: normal;
}

.arvo-regular {
font-family: 'ArvoRegular', Arial, sans-serif;
}


这是site。根据我的理解,这是正确的方法

最佳答案

我认为您的CSS没有错。我敢打赌,这是一个跨域问题(我以前曾遇到过)。看一下这篇文章:http://davidwalsh.name/cdn-fonts

07-24 16:37