跳到主要内容

@font-face

@font-face 规则与您期望的一样。只需在其后添加一组属性块,如下所示:

@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;
}