Scroll bar, but there's no content
css, html
Solution
Either remove the `height: 100%` from `<html/>`, `<body/>` and `#wrapper` or add
html, body { margin: 0; }
Problem
My website has no content up or down yet the scroll bar is visible and lets you scroll. Unfortunately I don't know what would cause I'm assuming it something to do with this CSS code, but I honestly don't know. ``` html, body { height:100%; } .centre { position:absolute; left:50%; top:50%; } #wrapper { height:100%; position:relative; left:0px; top:0px; min-height:600px; min-width:600px; } ``` Everything on the website is based off the centre class. And `<div id="wrapper"></div>` surrounds all the content. I know I haven't been very helpful but from my understanding there should only be scroll bars if there is content outside the view-able area and there isn't.