Bootstrap表数据行被放大

时间:2016-11-14 16:23:22

标签: css twitter-bootstrap twitter-bootstrap-3 datatables

此错误仅在IE中发生但我不知道,因为我检查了“开发人员工具”并且没有看到任何特殊内容。 enter image description here enter image description here 当页面加载时,最后一个单元格无法保持“启动时间”,该行将被展开。但是,如果我单击左上角的“AWS Test VPC”(它向Web服务发送相同的请求并加载相同的数据),表现在很好(图2)

如果需要,我会附上代码。只是不知道出了什么问题

1 个答案:

答案 0 :(得分:0)

您是否尝试将bootstrap类添加到表中的th,如下例所示。

<table>
  <thead>
    <tr>
      <th class="col-xs-2">Col 1</th>
      <th class="col-xs-1">Col 2</th>
      <th class="col-xs-1">Col 3</th>
      <th class="col-xs-1">Col 4</th>
      <th class="col-xs-2">Col 5</th>
      <th class="col-xs-2">Col 6</th>
      <th class="col-xs-2">Col 7</th>
      <th class="col-xs-1">Col 8</th>
    </tr>
  </thead>
</table>

这会将列调整为所需的大小。