Web development, coding & SEO


Web page width


Dimensions of a web page for 1024 screen resolution.

Max width of the page is 1004 pixels. IE consumes for scrollbar and borders 20 px, others 17..18 px.
A 10 px margin on the left leaves 994 px for the page.
Adding 10 px margin for symmetry to the right leaves just 984 px for the page.

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.