ダミー質問の言い訳。Twitter ブートストラップを使用して 3 つの流動的な列のレイアウトを作成する必要があります。1 列目はページ幅の 45%、2 列目は 10%、3 列目はページ幅の 45% です。
私はこれを試しました:
<div class="container-fluid">
<div class="row-fluid">
<div class="span5">
<table class="table table-bordered">
<thead>
<tr>
<th>#</th>
<th>First Name</th>
<th>Last Name</th>
<th>Username</th>
</tr>
</thead>
<tbody>
<tr>
<td>2</td>
<td>Jacob</td>
<td>Thornton</td>
<td>@fat</td>
</tr>
<tr>
<td>3</td>
<td colspan="2">Larry the Bird</td>
<td>@twitter</td>
</tr>
</tbody>
</table>
</div>
<div class="span2"></div>
<div class="span5">
<table class="table table-bordered">
<thead>
<tr>
<th>#</th>
<th>First Name</th>
<th>Last Name</th>
<th>Username</th>
</tr>
</thead>
<tbody>
<tr>
<td>2</td>
<td>Jacob</td>
<td>Thornton</td>
<td>@fat</td>
</tr>
<tr>
<td>3</td>
<td colspan="2">Larry the Bird</td>
<td>@twitter</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
しかし、中央の列が広すぎて、画面幅の 10% ではありません。Twitterのブートストラップで流動的なレイアウトを理解するのを手伝ってください。