「Bootstrap4」テーブル(.table)のクラスを使うサンプル
書式
table class="table"
使用例
<!DOCTYPE html> <html lang="en"> <head> <title>Bootstrapサンプル</title> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css"> <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script> <script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.16.0/umd/popper.min.js"></script> <script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"></script> </head> <body> <div class="container"> <h2>Basic Table</h2> <p>.tableクラスは、基本的なスタイル(ライトパディングと水平分割)をテーブルに追加します。</p> <table class="table"> <thead> <tr> <th>ユーザ名</th> <th>出身</th> <th>メールアドレス</th> </tr> </thead> <tbody> <tr> <td>山田</td> <td>大阪</td> <td>testA@example.com</td> </tr> <tr> <td>大崎</td> <td>東京</td> <td>testB@example.com</td> </tr> </tbody> </table> </div> </body> </html>