Your body margin isn't set to 0px, just that of html.
Daniel
2009-06-29 13:11:07
You didn't set the body's style:
body {margin: 0px; padding: 0px; height: 100%;}
Oups I forgot to set body's padding ans margin ...
Sorry forget me ... or throw rocks at me ...
In addition - rather than adding:
padding: 0; margin: 0;
to every selector do it globally at the top of your CSS file:
* { padding: 0; margin: 0; }