Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有以下代码:
#entrance { margin: 20% auto auto auto; text-align: center; font-family: 'Baron Neue'; src: url('fonts/baron.otf'); }
这允许文本在 chrome 中以所需的字体呈现,即 safari 和 opera,但不是 firefox。我得到的只是新罗马时代。
使用@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/