table
英語 [ˈteɪbl] アメリカ人 [ˈtebəl]
n. テーブル; テーブル、ディレクトリ; 手術台、作業台、ゲームテーブル; フラット床
vt.表表;棚;取り付け;棚
adj.table
condensed
英[ kən'denst]美[kənˈdɛnst]
v. (作る) 厚くする、または厚くする、凝縮する (condense の過去形および過去分詞); (作る) condense; 簡潔に、抽象的に、簡単な説明
ブートストラップ テーブルの凝縮スタイル 構文
機能: テーブルをよりコンパクトにします
ブートストラップ テーブルの凝縮スタイル 例
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>php中文网(php.cn)</title> <meta name="viewport" content="width=device-width, initial-scale=1"> <link rel="stylesheet" href="https://cdn.bootcss.com/bootstrap/3.3.7/css/bootstrap.min.css"> <script src="https://cdn.bootcss.com/jquery/2.1.1/jquery.min.js"></script> <script src="https://cdn.bootcss.com/bootstrap/3.3.7/js/bootstrap.min.js"></script> </head> <body> <div class="container"> <h2>表格</h2> <p>联合使用所有表格类:</p> <table class="table table-striped table-bordered table-hover table-condensed"> <thead> <tr> <th>#</th> <th>Firstname</th> </tr> </thead> <tbody> <tr> <td>1</td> <td>Anna</td> </tr> <tr> <td>2</td> <td>Debbie</td> </tr> <tr> <td>3</td> <td>John</td> </tr> </tbody> </table> </div> </body> </html>
[インスタンスの実行] ボタンをクリックしてオンライン インスタンスを表示します