JIMMY THE CODE
JIMMY THE CODE

Reputation: 159

Bootstrap overflow issue

How do I stop my bootstrap from stopping when I side scroll on my tablet?

When the page loads it looks fine but when when I scroll to the left to see the end of my table, the background an divs stop.

Screen Shot

Upvotes: 1

Views: 83

Answers (1)

Amin Kodaganur
Amin Kodaganur

Reputation: 666

you can use a Bootstrap class for .table wrapping class

.table-responsive

something like this

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

Upvotes: 2

Related Questions