Websites, SEO and web management, London UK.

SEO

Web page width

Dimensions of a web page for 1024 screen resolution.

Max width of the page is 1004 pixels, because IE consumes 20 pixels for scrollbar and borders, other browsers need 17..18 pixels. Margin 10 px on the left leaves 994 px for the page. Adding 10 px margin for symmetry to the right leaves just 984 px in total for the page.

optimal web page width

CSS

*{
	margin:0;
	padding:0;
}
body{
	padding-left:10px;
	padding-right:10px;
}
.page{/*centering the page*/
	margin:0 auto;
	width:994px;/*wider would create a scrollbar on bottom of 1024 screen*/
}
.content{/*page width*/
	float:left;
	width:984px;/*994 - 3 for IE6 - 7 for symmetry = 984px*/
}
2010.

Web Development - XHTML CSS JavaScript jQuery.