0
votes

I use ".table-responsive" class (Last version Bootstrap : 3.3.7) for my table, and Scroll always visible.

<div class="container container-main">
    <div class="table-responsive toggle-history">
        <table class="table table-extra-bordered table-hover table-striped">
            ...
        </table>
    </div>
</div>

Example : https://jsfiddle.net/fL00nudz/2/

I want to hide scroll If they are not necessary. Can you help me ?

1

1 Answers

1
votes

So the row class and col-* classes are messing up your table because the row has negative margins. Try finding a different solution how to style your content inside without using them.