Captain Rib
Captain Rib

Reputation: 295

Bootstrap .table-responsive disable vertically scrollbar

I am currently using the .table-responsive for my table. Since I have a lot columns so it does the magic. However, it also applied the scroll bar to my table vertically. How can I disable the vertical scroll bar and only keep the horizontal one?

Upvotes: 1

Views: 12102

Answers (1)

Captain Rib
Captain Rib

Reputation: 295

Getting this resolved by setting

.table-responsive {
  // Other values...
  overflow-x: auto;
  overflow-y: hidden;
  // Other values...
}

Upvotes: 6

Related Questions