1
は私のUIはここ ブートストラップ表調整
である私のコードは、私は次のようにそれを小さくする調整はどうすればよい
<div class="container">
<table id="headerTable" class="table table-bordered ">
<thead class="thead-default">
<tr>
<th colspan="2">電文Header</th>
</tr>
</thead>
<tbody>
<tr>
<th>Filler1</th>
<td><input id="123" type="text" class="input-sm"></td>
</tr>
<tr>
<th>MessageType</th>
<td><input id="123" type="text" class="input-sm"></td>
</tr>
<tr>
<th>MessageLength</th>
<td><input id="123" type="text" class="input-sm"></td>
</tr>
</tbody>
</table>
</div>
あなた<th>
と<td>
要素が広すぎることがないようにするだけBootstrap Gridクラスに入れ
部分にclass = "col-md-2"を入れるので、左側が右側より狭くなります。ありがとうございます – Bmegod
@ user2447944私のコードを更新しました。は10台、
あなたが推奨するコードを更新しました。
関連する問題