CSS3 字体

通过 CSS3,Web 用“web-safe

CSS3 @font-face 规则

在 CSS3 之前,web 体。

通过 CSS3,web 体。

存放到 web

在 CSS3 @font-face 的。

属性
@font-face

Firefox、Chrome、Safari 以及 Opera 支持 .ttf (True Type Fonts) 和 .otf (OpenType Fonts) 。

Internet Explorer 9+ 支持新的 @font-face 仅支持 .eot (Embedded OpenType)。

注释:Internet Explorer 8 新的 @font-face 规则。

的字体

在新的 @font-face 称(比如 myFirstFont件。

如需为 HTML font-family (myFirstFont):

实例

<style> 
@font-face
{
font-family: myFirstFont;
src: url('Sansation_Light.ttf'),
     url('Sansation_Light.eot'); /* IE9+ */
}

div
{
font-family:myFirstFont;
}
</style>

描述符的 @font-face:

实例

@font-face
{
font-family: myFirstFont;
src: url('Sansation_Bold.ttf'),
     url('Sansation_Bold.eot'); /* IE9+ */
font-weight:bold;
}

文件 "Sansation_Bold.ttf" 包含了 Sansation 字符。

只要 font-family 为 "myFirstFont" 体。

多 @font-face 规则。

CSS3

在 @font-face 描述符:

描述符 描述
font-family name
src URL URL。
font-stretch
  • normal
  • condensed
  • ultra-condensed
  • extra-condensed
  • semi-condensed
  • expanded
  • semi-expanded
  • extra-expanded
  • ultra-expanded
"normal"。
font-style
  • ormal
  • italic
  • oblique
。默认是 "normal"。
font-weight
  • normal
  • bold
  • 100
  • 200
  • 300
  • 400
  • 500
  • 600
  • 700
  • 800
  • 900
。默认是 "normal"。
unicode-range unicode-range UNICODE 默认是 "U+0-10FFFF"。