I've noticed that the scroll bars are still visible even when I maximize the browser window. I don't see any reason for them to be there.
There doesn't seem to be a height issue, so the vertical scrollbars shouldn't be appearing, right?
Could someone provide some insight on this?
<style>
html, body, div { margin: 0; border: 0 none; padding: 0; }
html, body,form, #wrapper, #left, #right { height: 100%; min-height: 100%; }
#wrapper { margin: 10px; overflow: hidden; width: 960px; }
#left { background: yellow; float: left; width: 360px; }
#right { background: grey; margin-left: 360px; }
</style>
<div id="wrapper">
<div id="left">
Left
</div>
<div id="right"></div>
</div>