CSSTemplates.NET
Cascading Style Sheet TemplatesFree CSS Templates
Download the top 10 CSS templates here that are carefully selected by
us. You will get to receive other freebies such as Icons, headers and useful tools. Made possible by CSSTemplates.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;
}

