Bigger Glyphicons

后端 未结 7 1900
感情败类
感情败类 2020-12-07 13:55

How do I make bigger Glyphicons in twitter bootstrap 3.0 (not 2.3.x).

This code will make my glyphicons big:

相关标签:
7条回答
  • 2020-12-07 14:24

    The .btn-lg class has the following CSS in Bootstrap 3 (link):

    .btn-lg {
      padding: 10px 16px;
      font-size: 18px;
      line-height: 1.33;
      border-radius: 6px;
    }
    

    If you apply the same font-size and line-height to your span (either .glyphicon-link or a newly created .glyphicons-lg if you're going to use this effect in more than one instance), you'll get a Glyphicon the same size as the large button.

    0 讨论(0)
提交回复
热议问题