jebu1104
1/24/2017 - 4:08 PM

scroll tables with div, must wrap table with div first. or use this jquery if manually can't wrap with div $( "table" ).wrap( "<div class='

scroll tables with div, must wrap table with div first. or use this jquery if manually can't wrap with div

$( "table" ).wrap( "

" );

.table-responsive {
    min-height: .01%;
    overflow-x: auto;
}
@media (max-width: 767px) {
    .table-responsive {
        width: 100%;
        margin-bottom: 15px;
        overflow-y: hidden;
        -ms-overflow-style: -ms-autohiding-scrollbar;
        border: 1px solid #ddd;
    }
}