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

时间:2014-07-28 07:39:22

标签: html css

我的代码有问题。因为我想为我的页面包含一个全局字体,我下载了一个.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
} 

我不知道哪里出错了。你能帮帮我吗?感谢。

5 个答案:

答案 0 :(得分:106)

仅为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。要自动执行所有此过程,您可以使用:Font-Squirrel : Web Font Generator

此外,现代浏览器正在转向.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/


寻找浏览器支持:Can I Use fontface

答案 1 :(得分:16)

您尝试过格式吗?

@font-face {
  font-family: 'The name of the Font Family Here';
  src: URL('font.ttf') format('truetype');
}

阅读这篇文章:http://css-tricks.com/snippets/css/using-font-face/

此外,也可能取决于浏览器。

答案 2 :(得分:6)

您可以这样使用字体:

@font-face {
  font-family:"Name-Of-Font";
  src: url("yourfont.ttf") format("truetype");
}

答案 3 :(得分:4)

我知道这是一篇旧文章,但这解决了我的问题。

@font-face{
  font-family: "Font Name";
  src: url("../fonts/font-name.ttf") format("truetype");
}

通知src:url("../fonts/font-name.ttf");,我们使用两个句点返回到根目录,然后返回到fonts文件夹或文件所在的位置。

希望这可以帮助某人:)快乐编码

答案 4 :(得分:-3)

@ font-face不适用于我,但如果替换为正文,则可以使用。