Font face css仅适用于Chrome

时间:2012-11-17 21:19:06

标签: html css font-face

嗨,我知道这个问题有很多例子,但没有一个能给我提供解决方案。这是我的代码:

@font-face {
 font-family: 'lucida_cal';
 src: url('http://www.mydomain.co.uk/Content/js/lcallig-webfont.eot');
 src: url('http://www.mydomain.co.uk/Content/js/lcallig-webfont.eot?#iefix') format('embedded-opentype'), 
        url('http://www.mydomain.co.uk/Content/js/lcallig-webfont.woff') format('woff'), 
        url('http://www.mydomain.co.uk/Content/js/lcallig-webfont.ttf') format('truetype'), 
        url('http://www.mydomain.co.uk/Content/js/lcallig-webfont.svg#lucida_calligraphyitalic') format('svg');

 font-weight: normal;
 font-style: normal;
}
h1 {
    font-family:lucida_cal, Geneva, sans-serif;
    font-weight:bold;
    font-size:18px;
}

我在css文件所在的根目录中有所有版本。我也试过了url('lcallig-webfont.woff')。它在Chrome中运行,但没有其他浏览器。

0 个答案:

没有答案