Can CSS be used to hide the scroll bar? How would you do this?
I just thought I'd point out to anyone else reading this question that setting overflow: hidden (or overflow-y) on the body element didn't hide the scrollbars for me.
overflow: hidden
body
I had to use the html element.
html