0

我正在尝试从我的服务器加载自定义字体,但它没有检索字体

我正在使用以下代码,有人可以告诉我我正在使用的代码格式是否正确。

代码 :

@font-face {  
      font-family: trcustomfont ;  
      src: url( http://content.sales-accredit.com/BTGOV/Fonts/Knowledge-Regular.otf ) format("opentype");  
}  

.customfont { 
      font-family: trcustomfont;  
} 
4

1 回答 1

0

你应该这样写:-

@font-face {
    font-family: 'MyWebFont';
    src: url('webfont.eot'); /* IE9 Compat Modes */
    src: url('webfont.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
         url('webfont.woff') format('woff'), /* Modern Browsers */
         url('webfont.ttf')  format('truetype'), /* Safari, Android, iOS */
         url('webfont.svg#svgFontName') format('svg'); /* Legacy iOS */
    }

或阅读有关如何为我们的网站使用自定义字体的更多信息.....

于 2012-12-05T09:07:37.710 回答