(Source)をコピーすると利用できます。
キーボードの指定 <kbd>
「Ctrl」+「A」(すべて選択)とキーボードの指定をするときは、「Ctrl」+「A」
(Source) <kbd>「Ctrl」+「A」</kbd>
ボタンのサイズ <btn-lg> <btn> <btn-sm> <btn-xs>
(Source)
(Large) <button type="button" class="btn btn-default btn-lg">Large button</button>
(Default) <button type="button" class="btn btn-default">Default button</button>
(Small) <button type="button" class="btn btn-default btn-sm">Small button</button>
(Extra small <button type="button" class="btn btn-default btn-xs">Extra small button</button>
縦線を入れる table-bordered
(Source)
<table class="table table-bordered">
・・・
</table>
オンマウス table-hover
(Source)
<table class="table table-hover">
・・・
</table>
ストライプ table-striped
(Source)
<table class="table table-striped">
・・・
</table>
「tr」のカラー
(Source)
<tr class="active">...</tr>
<tr class="success">...</tr>
<tr class="warning">...</tr>
<tr class="danger">...</tr>
<tr class="info">...</tr>
Responsive table
横幅が狭まると、テーブルの下に横スライダーが出ます。
Table cell | Table cell | Table cell | Table cell | Table cell | Table cell | Table cell | Table cell |
Table cell | Table cell | Table cell | Table cell | Table cell | Table cell | Table cell | Table cell |
(Source)
<div class="table-responsive">
<table class="table">
・・・
</table>
</div>
「←戻る」、「進む→」等のリンクを配置するときに使います。
(CSS Source)
.pull-left {
float: left !important;
}
.pull-right {
float: right !important;
}
.element {
.pull-left();
}
.another-element {
.pull-right();
}
(HTML Source)
<div class="pull-left">左側に配置</div>
<div class="pull-right">右側に配置</div>
コンテンツがボックスの高さ以上になると、スクロールバーが出ます。 overflow-auto
(Source)
<div style="height:#px;overflow:auto;border:1px solid #aaa;padding:10px;">コンテンツ</div> (高さは好みの数値を入力)
参考 自動的にスクロールするvtickerのページはこちら
クリックするとModal window が出ます。
(Source-Large)
<button type="button" class="btn btn-default" data-toggle="modal" data-target=".bs-example-modal-lg">Large modal</button>
<div class="modal fade bs-example-modal-lg" tabindex="-1" role="dialog" aria-labelledby="myLargeModalLabel">
<div class="modal-dialog modal-lg">
<div class="modal-content" style="padding:10px;">
これが大きいサイズ
</div>
</div>
</div>
(Source-Small)
<button type="button" class="btn btn-default" data-toggle="modal" data-target=".bs-example-modal-sm">Small modal</button>
<div class="modal fade bs-example-modal-sm" tabindex="-1" role="dialog" aria-labelledby="mySmallModalLabel">
<div class="modal-dialog modal-sm">
<div class="modal-content" style="padding:10px;">
これが小さいサイズ
</div>
</div>
</div>
クリックすると下にボックス が出ます。
ここに文章を書く。
2段目
3段目
4段目
5段目
(Source)
<button class="btn btn-default" type="button" data-toggle="collapse" data-target="#collapseExample" aria-expanded="false" aria-controls="collapseExample">
Button Name
</button>
<div class="collapse" id="collapseExample">
<div class="well">
<p>ここに文章を書く。<br>2段目<br>3段目<br>4段目<br>5段目</p>
</div>
</div>
ドロップダウンではなく、ドロップアップ
(Source)
<div class="dropup">
<button class="btn btn-default dropdown-toggle" type="button" id="dropdownMenu2" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
Dropup
<span class="caret"></span>
</button>
<ul class="dropdown-menu" aria-labelledby="dropdownMenu2">
<li><a href="#">Linkpage 1</a></li>
<li><a href="#">Linkpage 2</a></li>
<li><a href="#">Linkpage 3</a></li>
<li><a href="#">Linkpage 4</a></li>
</ul>
</div>