1

我有一个有 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>

谢谢!

4

1 回答 1

8

为避免换行,您可以使用

.the-table {
    white-space: nowrap;
    max-width: none;
    width: auto;
}

这将强制在容器上水平滚动<table>(或者如果该容器可以扩展,则在浏览器中)。所以,如果你想控制它的布局,你可以在<table>里面放一个<div>withoverflow: auto和一个 set width。您可以使用带有额外类的 Bootstrap“跨度”:

.the-container {
    overflow: auto;
    /* width cames from spanN class */
}
于 2012-09-11T07:48:46.913 回答