我有一个来自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>
我希望表格的列彼此更接近。如何才能做到这一点?谢谢。
答案 0 :(得分:2)
如果我理解正确,您希望表格的宽度适合内容。
最简单的方法是设置width: auto
:
<table class="table table-bordered" style="width: auto">