Twitter Bootstrap2.3.1でテーブで行に色を指定します。
【準備】
1.「Twitter Bootstrap2.3.1の使用方法」の手順の通り、Twitter Bootstrapを配置しておきます。
【手順1】
1.HTMLファイル「index.html」(任意)を作成。
2.「index.html」を以下の様に入力。
<!DOCTYPE html> <html> <head> <link href="bootstrap/css/bootstrap.min.css" rel="stylesheet" /> </head> <body> <table class="table table-condensed"> <caption>テーブルのタイトル</caption> <thead> <tr> <th>名前</th> <th>年齢</th> <th>性別</th> </tr> </thead> <tbody> <tr class="success"> <td>あいうえお</td> <td>11</td> <td>男</td> </tr> <tr class="error"> <td>かきくけこ</td> <td>22</td> <td>女</td> </tr> <tr class="warning"> <td>さしすせそ</td> <td>33</td> <td>男</td> </tr> <tr class="info"> <td>たちつてと</td> <td>44</td> <td>女</td> </tr> </tbody> </table> <script src="http://code.jquery.com/jquery.js"></script> <script src="bootstrap/js/bootstrap.min.js"></script> </body> </html>
【手順2】
1.「table-condensed」クラスは以下の様に定義されていました。
.table tbody tr.success > td { background-color: #dff0d8; } .table tbody tr.error > td { background-color: #f2dede; } .table tbody tr.warning > td { background-color: #fcf8e3; } .table tbody tr.info > td { background-color: #d9edf7; }
【手順3】
1.ブラウザで「index.html」を開き、以下の様に表示されれば成功です。
以上です。
0 件のコメント:
コメントを投稿
注: コメントを投稿できるのは、このブログのメンバーだけです。