我有一个有 25 列的表格,总共大约 2600 像素宽。
现在,我的结构如下所述 - 但它在该content
区域之外流动,并且每列中的内容未正确对齐。事实上,应该在一行中的内容出现在每行的 2 或 3 上。它通常看起来不整洁。
我怀疑这是因为 Twitter Bootstrap 是为较小的数据集设计的——尤其是表格。
但是有没有人知道如何让这张桌子看起来不笨重?
<div class="container-fluid">
<div class="content">
<div class="row-fluid">
<div class="span12">
<h2>Home</h2>
<table class="table table-striped table-hover table-condensed">
<thead>
<tr>
<th>Name</th>
<th>Phone</th>
<th>Email</th>
<th>Co. Name</th>
<th>Co. Phone</th>
<th>Co. Size</th>
<th>Co. Type</th>
<th>City</th>
.
.
.
</tr>
</thead>
<tr>
<td>John F Kennedy</td>
<td>87698765</td>
<td>jfk@email.com</td>
<!-- Begin Firm Info Here -->
<td>Acme Inc</td>
<td>(876) 987-6543</td>
.
.
.
</tr>
</table>
</div>
</div>
</div>
</div>
谢谢!