Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    text
    copied!<p>Yes this is possible with JavaScript and CSS on HTML;-)</p> <p>Check out the code I made for you in the <a href="http://www.w3schools.com/html/tryit.asp?filename=tryhtml_basic" rel="noreferrer">http://www.w3schools.com/html/tryit.asp?filename=tryhtml_basic</a> Just copy&amp;paste to see how it works, I do not think explanation is required. I hope this answers your question? Because it was not really crystal clear to me what you required.</p> <pre><code>&lt;!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"&gt; &lt;html&gt; &lt;head&gt; &lt;style type="text/css"&gt; #content { width: 200px; overflow-x: hidden; overflow-y: auto; white-space: pre; background-color: red; } #scrollbar { width: 200px; overflow-x: scroll; overflow-y: hidden; /*set background color to transparent, to remove the blue line on top of the scrollbar*/ background-color: blue; } #innerScrollbar { height: 1px; line-height: 1px; font-size: 1px; visibility: hidden; background-color: yellow; } &lt;/style&gt; &lt;script type="text/javascript"&gt; //getting scrollbar width of browser, copied from (and thanks to) http://www.alexandre-gomes.com/?p=115 function getScrollBarWidth() { var inner = document.createElement('p'); inner.style.width = "100%"; inner.style.height = "200px"; var outer = document.createElement('div'); outer.style.position = "absolute"; outer.style.top = "0px"; outer.style.left = "0px"; outer.style.visibility = "hidden"; outer.style.width = "200px"; outer.style.height = "150px"; outer.style.overflow = "hidden"; outer.appendChild (inner); document.body.appendChild (outer); var w1 = inner.offsetWidth; outer.style.overflow = 'scroll'; var w2 = inner.offsetWidth; if (w1 == w2) w2 = outer.clientWidth; document.body.removeChild (outer); return (w1 - w2); }; //update scrollbar on page load, and when scrolling the content function updateScrollbar(content, scrollbar) { scrollbar.getElementsByTagName('*')[0].style.width = content.scrollWidth + "px"; content.scrollLeft = scrollbar.scrollLeft; } &lt;/script&gt; &lt;/head&gt; &lt;body onload="updateScrollbar(document.getElementById('content'), document.getElementById('scrollbar'))"&gt; &lt;div id="content"&gt;Here goes the content, you can now place the scrollbar div anywhere else you wish. But keep in mind that the scrollbar itself will still be the scrollbar of the browser/OS.&lt;/div&gt; ...other website stuff goes here... &lt;div id="scrollbar" onscroll="updateScrollbar(document.getElementById('content'), this)"&gt;&lt;div id="innerScrollbar"&gt;&lt;!--dummy text--&gt;&lt;/div&gt;&lt;/div&gt; &lt;script type="text/javascript"&gt; //update scrollbar-container height, to height of scrollbar + 1, //without a tiny bit of content visible, the scrollbar will not show at all! document.getElementById('scrollbar').style.height =(getScrollBarWidth() + 1) + "px"; &lt;/script&gt; &lt;/body&gt; &lt;/html&gt; </code></pre> <p>Ow wait, I reread your question, and it seems clear to me what you want. So you can just print X number of tables, in which you can just scroll the Y-axis. And at the bottom of the tables, you put the scrollbar div, and you will have to adapt the javascript a bit and loop through the tables:</p> <pre><code>innerscrollbar.style.width = maxWidthFromTables + "px"; tables[i].scrollLeft = scrollbar.scrollLeft; </code></pre> <p>you will need to retrieve maxWidthFromTables, when using tables of different width, just get the maximum width from: <code>tables[i].scrollWidth;</code></p>
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload