CSSTemplates.NET
Cascading Style Sheet TemplatesPremium CSS Templates
Visit our new Web Designers Directory
if you are looking for active and reliable Web or CSS Designers to create your CSS or professional templates.
CSS Templates on the Net
Eliminating Page Margin
Setting the margin and padding values to zero will eliminate those default whitespace around the page. Setting the position to absloute as well as setting top and left properties to zero helps to remove body margins in Netscape Navigator 4.
In CSS file:
html, body{
margin:0;
padding:0;
position: absolute;
top:0;
left:0;
}

