bootstrap table 怎么自适应宽度

时间:2023-01-31 04:52:46
<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表格样式不会被使用。