bootstrap table 怎么自适应宽度

<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表格样式不会被使用。
原文地址:https://www.cnblogs.com/jpfss/p/10244078.html