web*_*jan 5 html html-table twitter-bootstrap
我尝试了以下代码,但无法正常工作:
<section class="signa-table-section clearfix">
<div class="container">
<div class="row">
<div class="col-lg">
<table class="table table-responsive table-bordered">
<thead>
<tr>
<th>Entry</th>
<th>Sl</th>
<th colspan="3">Tp</th>
<th>Tp</th>
</tr>
</thead>
<tbody>
<tr>
<td>Mark</td>
<td>Otto</td>
<td>@mdo</td>
<td>Mark</td>
<td>Otto</td>
</tr>
<tr>
<td>Mark</td>
<td>Otto</td>
<td>@mdo</td>
<td>Mark</td>
<td>Otto</td>
</tr>
<tr>
<td>Mark</td>
<td>Otto</td>
<td>@mdo</td>
<td>Mark</td>
<td>Otto</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
</section>
Run Code Online (Sandbox Code Playgroud)
将您的内部替换为<thead>:
<tr>
<th rowspan="2">Entry</th>
<th rowspan="2">Sl</th>
<th colspan="3">Tp</th>
</tr>
<tr>
<th>Tp</th>
<th>Tp</th>
<th>Tp</th>
</tr>
Run Code Online (Sandbox Code Playgroud)