Bootstrap .table-responsive 禁用垂直滚动条

Cap*_*Rib 1 html twitter-bootstrap twitter-bootstrap-3

我目前正在为我的桌子使用 .table-responsive。因为我有很多列,所以它很神奇。但是,它也将滚动条垂直应用于我的表格。如何禁用垂直滚动条而只保留水平滚动条?

Cap*_*Rib 5

通过设置解决这个问题

.table-responsive {
  // Other values...
  overflow-x: auto;
  overflow-y: hidden;
  // Other values...
}
Run Code Online (Sandbox Code Playgroud)