0

我有以下代码:

#entrance {
    margin: 20% auto auto auto;
    text-align: center;
    font-family: 'Baron Neue';
    src: url('fonts/baron.otf');
}

这允许文本在 chrome 中以所需的字体呈现,即 safari 和 opera,但不是 firefox。我得到的只是新罗马时代。

4

1 回答 1

2

使用@font-face 属性。

@font-face {  
   font-family: Baron Neue;   
   src: local('Baron Neue'),   
   url('fonts/baron.otf');  
   font-weight: 400; 
}

http://sixrevisions.com/css/font-face-guide/

于 2013-08-24T14:01:32.327 回答