1. 程式人生 > >bootstrap table 怎麽自適應寬度

bootstrap table 怎麽自適應寬度

表格樣式 table name -name wrap resp spa 使用 控制

<div class="table-responsive">
    <table class="table text-nowrap">
        <thead>
            <tr>
                <th> ... </th>
                ....
            </tr>
        </thead>
        <tbody>
            <tr>
                <td> ... </td>
                ....
            </tr>
            .....
        </tbody>
    </table>
</div>

其中,表格需要加table樣式,text-nowrap控制內容不換行,表格外層必須有<div class="table-responsive">。表格裏面的theadtbody不能省略,否則Bootstrap表格樣式不會被使用。

bootstrap table 怎麽自適應寬度