@font-face跟其在CSS中作用表現(xiàn)一樣,在后面簡單地添加個塊狀屬性即可,類似下面:
@font-face
font-family Geo
font-style normal
src url(fonts/geo_sans_light/GensansLight.ttf)
.ingeo
font-family Geo
生成為:
@font-face {
font-family: Geo;
font-style: normal;
src: url("fonts/geo_sans_light/GensansLight.ttf");
}
.ingeo {
font-family: Geo;
}
更多建議: