×
[PR]上記の広告は3ヶ月以上新規記事投稿のないブログに表示されています。新しい記事を書く事で広告が消えます。
Bootstrap テーブルの利用 その4
・サンプル
<table class="table table-striped table-bordered table-hover">
罫線有り、一行おき色つき、選択行をハイに
・サンプル見出しの色とセル幅の指定 %指定が便利
・サンプル
<table class="table table-striped table-bordered table-hover">
罫線有り、一行おき色つき、選択行をハイに
・サンプル見出しの色とセル幅の指定 %指定が便利
<tr class ="table-primary">
<thead>
<thead>
<th style="width: 8%">受注</th>
<th style="width: 8%">明細</th>
<th style="width: 10%">受注日</th>
<th style="width: 20%">取引先</th>
<th style="width: 28%">品名</th>
<th style="width: 8%"">数量</th>
<th style="width: 10%">金額</th>
<th style="width: 8%">納期</th>
</tr>
<t/head>
</tr>
<t/head>
PR