Fix the horizontal scroll bar not working in "Responsible Table" with Bootstrap 3
I was using "table-responsive" class from Bootstrap 3 recently and got the issue that horizontal scroll bar not moving when drag it. I found out a solution which add style " -ms-overflow-style:auto !important;" to the "table-responsive" class as below.
.table-responsive {
-ms-overflow-style:auto !important;
}
The above issue was resolved.
Comments
Post a Comment