如何使Twitter引导表列彼此更接近?

时间:2014-03-20 04:13:09

标签: html twitter-bootstrap html-table

我有一个来自Twitter Bootstrap v3.0.3的简单表格。它只有2列。下面是该表的html代码。

<table class="table table-bordered">
  <thead>
    <tr>
      <th>Head1</th>
      <th>Head2</th>
    </tr>
  </thead>
  <tbody>
    <tr>
      <td>Address</td>
      <td>Test</td>
    </tr>
  </tbody>
</table>

我希望表格的列彼此更接近。如何才能做到这一点?谢谢。

1 个答案:

答案 0 :(得分:2)

如果我理解正确,您希望表格的宽度适合内容。

最简单的方法是设置width: auto

<table class="table table-bordered" style="width: auto">