@font-face
允许网页开发者为其网页指定在线字体。 通过这种作者自备字体的方式,@font-face 可以消除对用户电脑字体的依赖。 @font-face 不仅可以放在在CSS的最顶层, 也可以放在 @规则 的 条件规则组 中。
语法
@font-face { [ font-family: <family-name>; ] || [ src: [ <url> [ format(<string>#) ]? | <font-face-name> ]#; ] || [ unicode-range: <urange>#; ] || [ font-variant: <font-variant>; ] || [ font-feature-settings: normal | <feature-tag-value>#; ] || [ font-stretch: <font-stretch>; ] || [ font-weight: <weight>; ] || [ font-style: <style>; ] } where <family-name> = <string> | <custom-ident>+ <feature-tag-value> = <string> [ <integer> | on | off ]?
值
值 | 描述 |
---|---|
<font-family> | 是自定义的字体名称,最好是使用下载的默认字体,将被引用到Web元素中的font-family。 |
src | 是自定义的字体的存放路径,可以是相对路径也可以是绝路径; |
font-variant | font-variant的值。 |
font-stretch | font-stretch的值。 |
font-weight | font-weight的值。 |
font-style | 对于src所指字体的描述。如果所需字体符合描述,则采用本font-face所定义的字体。 |
unicode-range | Unicode范围。 |
例子
CSS
@font-face { font-family: 'YourWebFontName'; src: url('YourWebFontName.eot'); /* IE9 Compat Modes */ src: url('YourWebFontName.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */ url('YourWebFontName.woff') format('woff'), /* Modern Browsers */ url('YourWebFontName.ttf') format('truetype'), /* Safari, Android, iOS */ url('YourWebFontName.svg#YourWebFontName') format('svg'); /* Legacy iOS */ }