This is the only CSS you can use to create scrollbars:
html{ overflow-y: scroll; }
Scroll bars will be disabled if the content is smaller than the window, so you will have to use some script to resize the body at least 1px
less than the height of the window:
$("body").css({ "height" : ($(window).height() - 1) + 'px', "overflow": "hidden" });
rcdmk source share