在CSS中使用自定义(ttf)字体 [英] Using a custom (ttf) font in CSS

查看:276
本文介绍了在CSS中使用自定义(ttf)字体的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有一个mac,并且已经安装了一个名为7 Segment的字体(它显示在Font Book中)。当我使用 font-family:7 Segment; 我得到Helvetica(或类似)而不是浏览器的默认字体,但它仍然没有显示正确的字体。该页面只需要在此计算机上显示。我将如何使用此页面上的字体?感谢。

I have a mac, and have installed a font called "7 Segment" (it shows up in Font Book). When I use font-family: "7 Segment"; I get Helvetica (or similar) rather than the browser's default font, but it still isn't showing the correct font. The page only needs to be shown on this computer. How would I use the font on this page? Thanks.

推荐答案

您需要使用css-property font-face来声明您的字体。看看这个花哨的网站: http://www.font-face.com/

You need to use the css-property font-face to declare your font. Have a look at this fancy site: http://www.font-face.com/

例如:

@font-face {
  font-family: MyHelvetica;
  src: local("Helvetica Neue Bold"),
       local("HelveticaNeue-Bold"),
       url(MgOpenModernaBold.ttf);
  font-weight: bold;
}

另请参阅: MDN @ font-face

这篇关于在CSS中使用自定义(ttf)字体的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆