如何向bootstrap-table添加水平滚动条?

问题描述 投票:0回答:3

我在引导表中遇到问题,其中的列不适合屏幕,所以我想通过在引导表中提供水平滚动条来处理该问题。

javascript jquery frontend bootstrap-table
3个回答
1
投票

您可以使用类

div
将表格包装在
.table-responsive
中:

<div class="table-responsive">
  <table class="table">
    ...
  </table>
</div>

参考: 引导程序4.1表


0
投票

您可以使用引导程序提供的类来实现此目的,

<div>
<div class="table-responsive">
  <table class="table table-striped table-bordered" style="width: 800px;">
    <tr>-</tr>
   </table>
</div>

0
投票

只需将 BootstrapTable 包裹在 div 中

<div className="table-responsive">
  <BootstrapTable responsive  ....  />
</div>
© www.soinside.com 2019 - 2024. All rights reserved.