表格回流 - 垂直标题

获取带有垂直标题的表格

Twitter 引导程序现在支持格式良好的普通表上的垂直标题。要实现这一点,只需使用 .table-reflow

在格式良好的表上使用 twitter bootstrap .table-reflow 类来实现具有垂直标题的表。此外,你可以结合使用 .table-striped.table-hover 这次悬停在列上。

<table class="table table-striped table-hover table-reflow">
    <thead>
        <tr>
            <th ><strong> First Name: </strong></th>
            <th ><strong> Last Name: </strong></th>
            <th ><strong> Email: </strong></th>
        </tr>
    </thead>
    <tbody>
        <tr>
            <td> John </td>
            <td> Doe </td>
            <td> john.doe@email.com </td>
        </tr>
        <tr>
            <td> Joane </td>
            <td> Donald </td>
            <td> jane@email.com </td>
        </tr>
    </tbody>
</table>

你应该在这里查看 v4 alpha 文档: twitter-bootstrap .table-reflow