Twitterのブートストラップ3.0(2.3.xではなく)で、より大きなGlyphiconsを作成するにはどうすればよいですか。
このコードは私のグリフィコンを大きくするでしょう:
<button type="button" class="btn btn-default btn-lg">
<span class="glyphicon glyphicon-th-list">
</span>
</button>
only _ spanを使用しながらbtn-lgクラスを使用してこのサイズwithoutを取得するにはどうすればよいですか。
これは小さなグリフアイコンを与える:
<span class="glyphicon glyphicon-link"></span>
あなたはグリフアイコンにあなたの好みに合ったフォントサイズを与えることができます。
span.glyphicon-link {
font-size: 1.2em;
}
これが私のやり方です。
<span style="font-size:1.5em;" class="glyphicon glyphicon-th-list"></span>
これにより、サイズをその場で変更できます。 CSSを変更してすべてに適用するのではなく、サイズを変更するための特別な要件に最適です。
Bootstrap 3の.btn-lg
クラスには、次のCSSがあります( link )。
.btn-lg {
padding: 10px 16px;
font-size: 18px;
line-height: 1.33;
border-radius: 6px;
}
あなたのスパンに同じfont-size
とline-height
を適用すると(この効果を複数のインスタンスで使用する場合は.glyphicon-link
または新しく作成した.glyphicons-lg
のいずれか)、大きなボタンと同じサイズのGlyphiconが得られます。
<button class="btn btn-default glyphicon glyphicon-plus fa-2x" type="button">
</button>
<!--fa-2x , fa-3x , fa-4x ... -->
<button class="btn btn-default glyphicon glyphicon-plus fa-3x" type="button">
</button>
<span>
を<h1>
または<h2>
に書きます。
<h1> <span class="glyphicon glyphicon-th-list"></span></h1>
私の場合、私はbutton
を持つinput-group-btn
を持っていました、そしてこのbutton
はそのコンテナより少し大きかったです。だから私はグリフアイコンにfont-size:95%
を付けただけで解決しました。
<div class="input-group">
<input type="text" class="form-control" id="pesquisarinbox" placeholder="Pesquisar na Caixa de Entrada">
<div class="input-group-btn">
<button class="btn btn-default" type="button">
<span class="glyphicon glyphicon-search" style="font-size:95%;"></span>
</button>
</div>
</div>
ブートストラップ3を使用している場合は、次のようにtagを使用します。<small><span class="glyphicon glyphicon-send"></span></small>
これはブートストラップ3に最適です。
複数の<small>
タグを使用してサイズをさらに小さく設定することもできます。
コード:<small><small><span class="glyphicon glyphicon-send"></span></small></small>