How Do I Make Glyphicons Bigger? (Change Size?)

前端 未结 7 565
借酒劲吻你
借酒劲吻你 2021-01-29 19:12

I would like to make the globe glyphicon bigger so that it covers up a large portion of the page (it\'s a vector image). It\'s not in a button or anything; it\'s just alone. Is

7条回答
  •  离开以前
    2021-01-29 19:46

    Increase the font-size of glyphicon to increase all icons size.

    .glyphicon {
        font-size: 50px;
    }
    

    To target only one icon,

    .glyphicon.glyphicon-globe {
        font-size: 75px;
    }
    

提交回复
热议问题