如何在Bootstrap-3中的另一个表中创建一个表。我试过了,但它显示在第一个表之后。
发布于 2014-07-10 18:52:28
您需要执行以下操作
<table class="table table-bordered">
<th colspan="3">Outer Table</th>
<tr>
<td>This is row one, column 1</td>
<td>This is row one, column 2</td>
<td>
<table class="table table-bordered">
<th colspan="3">Inner Table</th>
<tr>
<td>This is row one, column 1</td>
<td>This is row one, column 2</td>
<td>This is row one, column 3</td>
</tr>
</table>
</td>
</tr>
</table>演示:http://jsbin.com/qilebevo/1/
https://stackoverflow.com/questions/24674255
复制相似问题