B.6 CSS字体嵌入
语 法 | 描述和注释 |
---|---|
@font-face { | 开始样式规则 |
font-family: "name of font"; | 定义字体系列,可以用做font-family 属性引用的值 |
src: url("path/to/font.ext")
format("format-type"); | 识别字体的源文件;指定多个源文件时,使用逗号分隔各个值
对于.eot文件,格式应为embedded-opentype ;对于.woff文件,格式应为woff ;对于.ttf文件,格式应为truetype ;对于.svg文件,格式应为svg |
font-style: value; | 指定嵌入的字体样式,使用与font-style 属性相同的语法 |
font-weight: value; | 指定嵌入的字体的粗细,使用与font-weight 属性相同的语法 |
} | 结束样式规则 |