是否可以使Font Awesome图标大于' fa-5x'?

时间:2014-09-08 07:31:02

标签: html css twitter-bootstrap font-awesome

我正在使用此HTML代码:

<div class="col-lg-4">
  <div class="panel">
    <div class="panel-heading">
      <div class="row">
        <div class="col-xs-3">
          <i class="fa fa-cogs fa-5x"></i>
        </div>
        <div class="col-xs-9 text-right">
          <div class="huge">
            <?=db_query("SELECT COUNT(*) FROM orders WHERE customer = '" . $_SESSION['customer'] . "' AND EntryDate BETWEEN '" . date('d-M-y', strtotime('Monday this week')) . "' AND '" . date('d-M-y', strtotime('Friday this week')) . "'");?>
          </div>
            <div>orders this week</div>
        </div>
      </div>
    </div>
    <a href="view/orders">
      <div class="panel-footer">
        <span class="pull-left">View Details</span>
          <span class="pull-right"><i class="fa fa-arrow-circle-right"></i></span>
            <div class="clearfix"></div>
      </div>
    </a>
  </div>
</div>

创造了:

enter image description here

是否可以使图标大于fa-5x?它下方有很多白色空间,我希望它能够占用它。

7 个答案:

答案 0 :(得分:114)

字体真棒只是一种字体,因此您可以使用CSS中的字体大小属性来更改图标的大小。

所以你可以像这样在图标中添加一个类:

.big-icon {
    font-size: 32px;
}

答案 1 :(得分:25)

或者,您可以编辑源并创建自己的增量

FontAwesome 5

https://github.com/FortAwesome/Font-Awesome/blob/master/web-fonts-with-css/less/_larger.less

// Icon Sizes
// -------------------------

.larger(@factor) when (@factor > 0) {
  .larger((@factor - 1));

  .@{fa-css-prefix}-@{factor}x {
    font-size: (@factor * 1em);
  }
}

/* makes the font 33% larger relative to the icon container */
.@{fa-css-prefix}-lg {
  font-size: (4em / 3);
  line-height: (3em / 4);
  vertical-align: -.0667em;
}

.@{fa-css-prefix}-xs {
  font-size: .75em;
}

.@{fa-css-prefix}-sm {
  font-size: .875em;
}

// Change the number below to create your own incrementations
// This currently creates classes .fa-1x - .fa-10x
.larger(10);

FontAwesome 4

https://github.com/FortAwesome/Font-Awesome/blob/v4.7.0/less/larger.less

// Icon Sizes
// -------------------------

/* makes the font 33% larger relative to the icon container */
.@{fa-css-prefix}-lg {
    font-size: (4em / 3);
    line-height: (3em / 4);
    vertical-align: -15%;
}

.@{fa-css-prefix}-2x { font-size: 2em; }
.@{fa-css-prefix}-3x { font-size: 3em; }
.@{fa-css-prefix}-4x { font-size: 4em; }
.@{fa-css-prefix}-5x { font-size: 5em; }

// Your custom sizes
.@{fa-css-prefix}-6x { font-size: 6em; }
.@{fa-css-prefix}-7x { font-size: 7em; }
.@{fa-css-prefix}-8x { font-size: 8em; }

答案 2 :(得分:11)

您可以重新定义/覆盖默认的 font-awesome 尺寸,并添加自己的尺寸

.fa-1x{
    font-size:0.8em;
}
.fa-2x{
    font-size:1em;
}
.fa-3x{
    font-size:1.2em;
}
.fa-4x{
    font-size:1.4em;
}
.fa-5x{
    font-size:1.6em;
}
.fa-mycustomx{
    font-size:3.2em;
}

答案 3 :(得分:2)

  1. 只需添加像这样的字体真棒类:

    var NoNReconciled = context.tbl_prerelease_invoice
       .Where(x => x.Reconcile_Status == null && 
              !context.tbl_prerelease_invoice
              .Any(y => y.Pre_number == x.Pre_number && y.Reconcile_Status != null)
       ).Select(y => new { y.Pre_number })
       .Distinct().ToList();
    

    (您可以按5x,7x,9x ..来增加尺寸。)

  2. 您还可以添加自定义CSS。

答案 4 :(得分:0)

简单-仅使用Font Awesome 5的默认fa-[size]x类。您可以将图标缩放到父元素的font-size Read the docs about icon sizing.

的10倍

示例:

<span class="fas fa-info-circle fa-6x"></span>
<span class="fas fa-info-circle fa-7x"></span>
<span class="fas fa-info-circle fa-8x"></span>
<span class="fas fa-info-circle fa-9x"></span>
<span class="fas fa-info-circle fa-10x"></span>

答案 5 :(得分:0)

非常棒的使用SVG图标。因此,您可以根据需要调整其大小。

为此只需使用CSS类,

    .large-icon{
       font-size:10em;
       //or
      font-size:200%;
      //or
      font-size:50px;
    }

答案 6 :(得分:0)

您还可以使用CSS定义比例转换,如下所示:

.larger-icon {
 transform:scale(2);
}