The vertical bar does not appear in IE8 if the page is not long enough. In FF, there is a workaround for this
html {
overflow: -moz-scrollbars-vertical;
}
I tried the following for IE8: overflow:scroll;
but the scroll bar appears on both sides. I want it only for vertical and not horizontal. scroll-y does not work.
Any solution?