Allow horizontal scrolling on a table with a visible bottom at any time

I want to add horizontal scroll to the boot page. Currently, it is configured to let the user scroll all the way to the bottom of the page, and then use horizontal scrolling. I would like it to be set up so that the scroll is always visible. I recreated the problem in jsfiddle.

Js-feed

<table class="table"> 
0
html css scroll overflow
source share
2 answers

If you still want this to be the case, but this is not what bootstrap needs to do, add the following css property

 .container{ overflow:scroll; position:absolute; } 

https://jsfiddle.net/Siddharth_Pandey/5usukas1/

+2
source share

You use the table taking into account why the scroll moves to the bottom of the page, just remove the responsive thought of everyone that your design will change a little, but you can set it using css jsfiddle.net/Siddharth_Pandey/5usukas1

0
source share

All Articles