<table class="table table-striped table-bordered table-condensed">
<tr>
<th colspan="2">aaaaa</th>
</tr>
<tr>
<td>cccccccccc</td>
<td>dddddddddd</td>
</tr>
</table>
如何使用bootstrap在html表格的头部中间制作“aaaaa”?
答案 0 :(得分:10)
使用.text-center
<tr>
<th colspan="2" class="text-center">aaaaaa</th>
</tr>
答案 1 :(得分:2)
只需使用CSS样式text-align
并将其设置为center
:
.table {
text-align:center;
}
或者如果您只想将表格标题与中心对齐:
.table th {
text-align:center;
}