字体设置(@font-face)
@font-face
跟其在CSS中作用表现一样,在后面简单地添加个块状属性即可,类似下面:
@font-face
font-family Geo
font-style normal
src url(fonts/geo_sans_light/GensansLight.ttf)
.ingeo
font-family Geo
等同CSS如下:
@font-face {
font-family: Geo;
font-style: normal;
src: url("fonts/geo_sans_light/GensansLight.ttf");
}
.ingeo {
font-family: Geo;
}