Bootstrapにおけるtableの使い方は?テーブル全体の背景色やヘッダ部のみの背景色を指定
- システム
エンジニア - Bootstrapでのtableはどのようなことができるのですか。
- プロジェクト
マネージャー - テーブル全体の背景色やヘッダ部のみの背景色を指定できます。
Bootstrapにおけるtableの使い方とは?
今回は、Bootstrapにおけるtableの使い方について説明します。
そして、テーブル全体の背景色やヘッダ部のみの背景色を指定する方法のほかに、ストライプテーブルやボーダーテーブル、ホバーテーブルについてもご紹介します。
Bootstrapにおけるtableの使い方に興味のある方はぜひご覧ください。
テーブルの基本
<table> に .table クラスを指定すると、Bootstrapのテーブルとなります。
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
<table class=“table”>
<thead>
<tr>
<th scope=“col”>#</th>
<th scope=“col”>Name</th>
<th scope=“col”>Age</th>
<th scope=“col”>Gender</th>
</tr>
</thead>
<tbody>
<tr>
<th scope=“row”>1</th>
<td>Tanaka</td>
<td>30</td>
<td>male</td>
</tr>
<tr>
<th scope=“row”>2</th>
<td>Sato</td>
<td>25</td>
<td>female</td>
</tr>
<tr>
<th scope=“row”>3</th>
<td>Suzuki</td>
<td>35</td>
<td>male</td>
</tr>
</tbody>
</table>
|
See the Pen
bootstrap_table1 by kskumd (@kskumd)
on CodePen.
このように、<table> に .table クラスを指定すると、Bootstrapのテーブルとなります。
テーブル全体の背景色指定
Bootstrapでは、<table> に .table-* クラスを指定すると、テーブル全体の背景色を変更できます。
1
2
3
4
5
6
7
8
9
10
11
|
<table class=“table table-primary”>
<caption>table-primary</caption>
<tr><th>Name</th><th>Age</th></tr>
<tr><td>Tanaka</td><td>30</td></tr>
</table>
<table class=“table table-secondary”>
<caption>table-secondary</caption>
<tr><th>Name</th><th>Age</th></tr>
<tr><td>Tanaka</td><td>30</td></tr>
</table>
|
<table class=“table table-success”>
<caption>table-success</caption>
<tr><th>Name</th><th>Age</th></tr>
<tr><td>Tanaka</td><td>30</td></tr>
</table>
<table class=“table table-danger”>
<caption>table-danger</caption>
<tr><th>Name</th><th>Age</th></tr>
<tr><td>Tanaka</td><td>30</td></tr>
</table>
<table class=“table table-warning”>
<caption>table-warning</caption>
<tr><th>Name</th><th>Age</th></tr>
<tr><td>Tanaka</td><td>30</td></tr>
</table>
<table class=“table table-info”>
<caption>table-info</caption>
<tr><th>Name</th><th>Age</th></tr>
<tr><td>Tanaka</td><td>30</td></tr>
</table>
<table class=“table table-light”>
<caption>table-light</caption>
<tr><th>Name</th><th>Age</th></tr>
<tr><td>Tanaka</td><td>30</td></tr>
</table>
<table class=“table table-dark”>
<caption>table-dark</caption>
<tr><th>Name</th><th>Age</th></tr>
<tr><td>Tanaka</td><td>30</td></tr>
</table>
See the Pen
bootstrap_table2 by kskumd (@kskumd)
on CodePen.
このように、Bootstrapでは<table> に .table-* クラスを指定すると、テーブル全体の背景色を変更できます。
テーブルヘッダの背景色変更
Bootstrapでは、thead-* を指定すると、ヘッダの背景色を変更できます。
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
<table class=“table”>
<thead class=“thead-light”>
<tr>
<th scope=“col”>#</th>
<th scope=“col”>Name</th>
<th scope=“col”>Age</th>
<th scope=“col”>Gender</th>
</tr>
</thead>
<tbody>
<tr>
<th scope=“row”>1</th>
<td>Tanaka</td>
<td>30</td>
<td>male</td>
</tr>
</tbody>
</table>
|
<table class=“table”>
<thead class=“thead-dark”>
<tr>
<th scope=“col”>#</th>
<th scope=“col”>Name</th>
<th scope=“col”>Age</th>
<th scope=“col”>Gender</th>
</tr>
</thead>
<tbody>
<tr>
<th scope=“row”>1</th>
<td>Tanaka</td>
<td>30</td>
<td>male</td>
</tr>
</tbody>
</table>
See the Pen
bootstrap_table3 by kskumd (@kskumd)
on CodePen.
このように、Bootstrapではthead-* を指定すると、ヘッダの背景色を変更できます。
ストライプテーブル
Bootstrapでは、table-striped を指定すると、ストライプテーブルになります。
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
<table class=“table table-striped”>
<thead>
<tr>
<th scope=“col”>#</th>
<th scope=“col”>Name</th>
<th scope=“col”>Age</th>
<th scope=“col”>Gender</th>
</tr>
</thead>
<tbody>
<tr>
<th scope=“row”>1</th>
<td>Tanaka</td>
<td>30</td>
<td>male</td>
</tr>
<tr>
<th scope=“row”>2</th>
<td>Sato</td>
<td>25</td>
<td>female</td>
</tr>
<tr>
<th scope=“row”>3</th>
<td>Suzuki</td>
<td>35</td>
<td>male</td>
</tr>
</tbody>
</table>
|
See the Pen
bootstrap_table4 by kskumd (@kskumd)
on CodePen.
ボーダーテーブル
Bootstrapでは、table-bordered を指定すると、ボーダー(枠線)付きのテーブルになります。
table-borderless を指定すると、ボーダーなしのテーブルになります。
1
2
3
4
5
6
7
8
9
10
11
|
<table class=“table table-bordered”>
<caption>table-bordered</caption>
<tr><th>Name</th><th>Age</th></tr>
<tr><td>Tanaka</td><td>30</td></tr>
</table>
<table class=“table table-borderless”>
<caption>table-borderless</caption>
<tr><th>Name</th><th>Age</th></tr>
<tr><td>Tanaka</td><td>30</td></tr>
</table>
|
See the Pen
bootstrap_table5 by kskumd (@kskumd)
on CodePen.
ホバーテーブル
Bootstrapでは、table-hover を指定すると、行にマウスオンした場合に背景色を変更します。
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
<table class=“table table-hover”>
<thead>
<tr>
<th scope=“col”>#</th>
<th scope=“col”>Name</th>
<th scope=“col”>Age</th>
<th scope=“col”>Gender</th>
</tr>
</thead>
<tbody>
<tr>
<th scope=“row”>1</th>
<td>Tanaka</td>
<td>30</td>
<td>male</td>
</tr>
<tr>
<th scope=“row”>2</th>
<td>Sato</td>
<td>25</td>
<td>female</td>
</tr>
<tr>
<th scope=“row”>3</th>
<td>Suzuki</td>
<td>35</td>
<td>male</td>
</tr>
</tbody>
</table>
|
See the Pen
bootstrap_table6 by kskumd (@kskumd)
on CodePen.
- システム
エンジニア - テーブルを使うと、さまざまなところの色の指定ができるのですね。
- プロジェクト
マネージャー - そのとおりです。ぜひご自身でもコードを書いて理解を深めてください。
まとめ
いかがでしたでしょうか。Bootstrapにおけるtableの使い方について説明してきました。
テーブル全体の背景色や、ヘッダ部のみの背景色を指定する方法や、ストライプテーブルやボーダーテーブル、ホバーテーブルについても紹介しました。
ぜひご自身でソースコードを書いて、理解を深めてください。
FEnet.NETナビ・.NETコラムは株式会社オープンアップシステムが運営しています。
株式会社オープンアップシステムはこんな会社です
秋葉原オフィスには株式会社オープンアップシステムをはじめグループのIT企業が集結!
数多くのエンジニアが集まります。
-
スマホアプリから業務系システムまで
スマホアプリから業務系システムまで開発案件多数。システムエンジニア・プログラマーとしての多彩なキャリアパスがあります。
-
充実した研修制度
毎年、IT技術のトレンドや社員の要望に合わせて、カリキュラムを刷新し展開しています。社内講師の丁寧なサポートを受けながら、自分のペースで学ぶことができます。
-
資格取得を応援
スキルアップしたい社員を応援するために資格取得一時金制度を設けています。受験料(実費)と合わせて資格レベルに合わせた最大10万円の一時金も支給しています。
-
東証プライム上場企業グループ
オープンアップシステムは東証プライム上場「株式会社オープンアップグループ」のグループ企業です。
安定した経営基盤とグループ間のスムーズな連携でコロナ禍でも安定した雇用を実現させています。
株式会社オープンアップシステムに興味を持った方へ
株式会社オープンアップシステムでは、開発系エンジニア・プログラマを募集しています。
年収をアップしたい!スキルアップしたい!大手の上流案件にチャレンジしたい!
まずは話だけでも聞いてみたい場合もOK。お気軽にご登録ください。
新着案件New Job
-
開発エンジニア/東京都品川区/【WEB面談可】/在宅ワーク
月給29万~30万円東京都品川区(大崎駅) -
遠隔テストサービス機能改修/JavaScript/東京都港区/【WEB面談可】/テレワーク
月給45万~60万円東京都港区(六本木駅) -
病院内システムの不具合対応、保守/東京都豊島区/【WEB面談可】/テレワーク
月給30万~30万円東京都豊島区(池袋駅) -
開発/JavaScript/東京都豊島区/【WEB面談可】/テレワーク
月給50万~50万円東京都豊島区(大塚駅) -
債権債務システム追加開発/東京都文京区/【WEB面談可】/在宅勤務
月給62万~67万円東京都文京区(後楽園駅) -
PMO/東京都豊島区/【WEB面談可】/在宅勤務
月給55万~55万円東京都豊島区(池袋駅)