Page is a not externally linkable
encyclo - 9:19 pm on Jan 22, 2004 (gmt 0)
Actually, there is a solution which forces a scrollbar, but it is a real hack. In your CSS file, add this: and somewhere in your HTML, add: That puts an absolutely-positioned div which is 0.1 pixels longer than the page, meaning that there will always be a scrollbar showing. Not ideal I know, but I've found nothing better. Hope this helps!
There is no practical solution to it. #scroll {
position:absolute;
top:0;
bottom:-0.1px;
width:1em;
z-index:-1;
}<div id="scroll"></div>