twitter-bootstrap
ボタン
サーチ…
構文
- クラス:.btn-default | .btn-primary | .btn-success | .btn-info | .btn-warning | .btn-danger | .btn-link;
- サイズ:.btn-lg | .btn-md | .btn-sm | .btn-xs;
- 状態:アクティブ|消散した。
ボタンクラス
ブートストラップは、スタイリングボタンのための複数のクラスを提供し、それらを際立たせます。
ブートストラップボタンは、 .btn
クラスを要素に追加することで作成できます。
ブートストラップクラス | 役割(色) |
---|---|
.btn-default | 標準ボタン(白) |
.btn-primary | 余分な視覚的な体重を与え、主な行動を識別します(青色) |
.btn-success | 成功したアクションを示すために使用されます(緑色)。 |
.btn-info | 情報を提供するためのコンテキストボタン(薄い青色) |
.btn-warning | ユーザーが注意を払う必要があることを示します(黄色) |
.btn-danger | 危険な動作または否定的な動作(赤色) |
.btn-link | ボタンをアンカータグのように見せます。 |
ボタンのサイズ
また、 .btn-size
クラスでさまざまなサイズのボタンを作成することもできます
ブートストラップクラス | 結果 |
---|---|
.btn-lg | より大きなサイズのボタンを作成します。 |
.btn-sm | 小さなサイズのボタンを作成します。 |
.btn-xs | 超小型のボタンを作成する |
.btn-block | ボタンはブロックレベルの要素になり、親の全幅に渡ります |
ボタンをアクティブにする
active
クラスはボタンが押されたように見せます。
<button type="button" class="btn btn-primary active">Active Primary</button>
ボタンを無効にする
disabled
クラスをボタンに追加すると、そのボタンをクリックできなくなり、その上にカーソルを置くと禁止されたカーソルが表示されます。
<button type="button" class="btn btn-primary disabled">Disabled Primary</button>
ボタンを水平方向にレンダリングする
複数のボタンは、 .btn-group
クラスで水平にレンダリングできます。コンテナ要素内にボタンをラップし、その要素にbtn-groupクラスを渡します。
<div class="btn-group">
<button type="button" class="btn btn-primary">Apples</button>
<button type="button" class="btn btn-primary">Oranges</button>
<button type="button" class="btn btn-primary">Pineapples</button>
</div>
ボタンを垂直方向にレンダリングする
コンテナ要素に.btn-group-vertical
クラスを適用する
<div class="btn-group-vertical">
<button type="button" class="btn btn-primary">Apples</button>
<button type="button" class="btn btn-primary">Oranges</button>
<button type="button" class="btn btn-primary">Pineapples</button>
</div>
ボタングループを全幅にする
.btn-group
要素内にラップされたボタンは、必要なだけの幅を占めます。グループを画面の幅全体に.btn-group-justified
は、代わりに.btn-group-justified
使用します。
<div class="btn-group btn-group-justified">
<a href="#" class="btn btn-primary">Apples</a>
<a href="#" class="btn btn-primary">Oranges</a>
<a href="#" class="btn btn-primary">Pineapples</a>
</div>
Modified text is an extract of the original Stack Overflow Documentation
ライセンスを受けた CC BY-SA 3.0
所属していない Stack Overflow