Can CSS be used to hide the scroll bar? How would you do this?
Use the CSS overflow property:
.noscroll { width: 150px; height: 150px; overflow: auto; /* Or hidden, or visible */ }
Here are some more examples: