Bootstrap 3如何在桌子中间制作“aaaaa”?

时间:2014-01-26 13:13:45

标签: html css twitter-bootstrap twitter-bootstrap-3 text-alignment

<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”?

2 个答案:

答案 0 :(得分:10)

使用.text-center

<tr>
    <th colspan="2" class="text-center">aaaaaa</th>
</tr>

http://jsfiddle.net/52VtD/2045/

答案 1 :(得分:2)

只需使用CSS样式text-align并将其设置为center

.table {
    text-align:center;
}

或者如果您只想将表格标题与中心对齐:

.table th {
    text-align:center;
}