How to use font-weight with font-face fonts?

后端 未结 3 419
自闭症患者
自闭症患者 2020-12-05 17:37

I\'ve got two font files like: FONT-light and FONT-bold. Both come from @font-face kit so each version has like 5 font files included (OGV, TTF, WOFF, EOT).

To go fr

3条回答
  •  抹茶落季
    2020-12-05 18:18

    you can add number to font-weight property, for example to the light version.

    font-weight: normal; //  light version as it is.
    font-weight: 700; // makes light version bolder. 
    

提交回复
热议问题