小编典典

如何使用 CSS 包含字体 .ttf?

all

我的代码有问题。因为我想为我的页面包含一个全局字体,所以我下载了一个 .ttf 文件。我将它包含在我的主要 CSS 中,但我的字体不会改变。

这是我的简单代码:

@font-face {
    font-family: 'oswald';
    src: url('/font/oswald.regular.ttf');
}

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
    margin:0;
    padding:0;
    border:0;
    font-size:100%;
    font:inherit;
    font-family: oswald;
    vertical-align:baseline
}

我不知道我哪里出错了。你能帮我解决这个问题吗?谢谢。


阅读 224

收藏
2022-07-30

共1个答案

小编典典

仅为 webfont 提供 .ttf 文件不足以提供跨浏览器支持。目前最好的组合是使用以下组合:

@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 */
}

此代码假定您有 .eot 、 .woff 、 .ttf 和 svg 格式的
webfont。要使所有这些过程自动化,您可以使用:Transfonter.org

此外,现代浏览器正在转向 .woff 字体,因此您也可以这样做: :

@font-face {
  font-family: 'MyWebFont';
  src: url('myfont.woff') format('woff'), /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
   url('myfont.ttf') format('truetype'); /* Chrome 4+, Firefox 3.5, Opera 10+, Safari 3鈥�5 */
}

在这里阅读更多:http: //css-tricks.com/snippets/css/using-font-face/


寻找浏览器支持: 我可以使用字体吗

2022-07-30