Reduce the weight of a Glyphicon

后端 未结 4 850
抹茶落季
抹茶落季 2021-02-14 11:33

Is there a way to reduce the \"weight\" of Glyphicons?

I am using the \"ok\" Glyphicon which disp

4条回答
  •  佛祖请我去吃肉
    2021-02-14 12:11

    You could apply the font-weight property on ::before pseudo element to alter the font-weight:

    .glyphicon {
      font-size: 60px;
    }
    
    .glyphicon-light::before {
      font-weight: 100;
    }
    
    .glyphicon-thick::before {
      font-weight: 900;
    }
    
    
    
    
    
    
    
    
    

提交回复
热议问题