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

Pla*_*Yao 1 html css text-alignment twitter-bootstrap twitter-bootstrap-3

<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>
Run Code Online (Sandbox Code Playgroud)

如何使用bootstrap在html表的头部中间制作"aaaaa"?

adr*_*ift 10

使用 .text-center

<tr>
    <th colspan="2" class="text-center">aaaaaa</th>
</tr>
Run Code Online (Sandbox Code Playgroud)

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