Can CSS be used to hide the scroll bar? How would you do this?
If you wish to remove vertical (and horizontal) scrollbars from a browser viewport, add:
style="position: fixed;"
to the
element.
Javascript:
document.body.style.position = 'fixed';
CSS:
body {
position: fixed;
}