重新定义谷歌字体字体粗细

时间:2014-06-11 13:43:19

标签: css fonts font-face

有什么方法可以重新定义谷歌字体? 我想将谷歌字体300设为400,将500设为700(正常和粗体) 我不想搜索并替换我的所有scss:es for normal => 300和粗体=> 500

1 个答案:

答案 0 :(得分:0)

是的,有可能。执行以下操作:

 <p>Testing</p>
 <i>Testing</i>

    @import url(//fonts.googleapis.com/css?family=Roboto:300,500|Roboto+Condensed:300&subset=latin,cyrillic-ext,greek-ext,greek,latin-ext,cyrillic);

    @font-face {
        font-family: "Roboto";
        font-weight: 300;
        font-style: normal;

     }

     @font-face {
        font-family: "Roboto";
        font-weight: 500;
        font-style: bold;
     }

     body {
         font-family: "Roboto";
         font-weight: normal;
     }

     i {
         font-weight: bold;
     }