Skip to main content

@font-face

预览

@font-face {
font-family: myFirstFont;
src: url("Sansation_Light.ttf"), url("Sansation_Light.eot"); /* IE9 */
}

div {
font-family: myFirstFont;
}

属性定义及使用说明

@font-face规则,网页设计师再也不必使用的"web-safe"的字体之一。

字体的名称,font - face规则:

font-family: myFirstFont; 字体文件包含在您的服务器上的某个地方,参考 CSS:

src: url('Sansation_Light.ttf') 如果字体文件是在不同的位置,请使用完整的 URL:

src: url('http://www.w3cschool.css/css3/Sansation_Light.ttf')

参考