View Single Post
    #5 (permalink)  
Old 06-08-2008
Codehead's Avatar
Codehead Codehead is offline
Administrator
Company name: Codehead LLP
My latest blog post: Mac Performance Benchmark App
 
Join Date: Apr 2007
Location: WA
Posts: 175
Default Re: How do I center a web page??
Here is the secret:
HTML Code:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Centered Page</title>

	<style type="text/css">
		body {
			min-width: 800px;
			text-align: center;
		}
		#main-wrapper {
			width: 800px;
			margin-left: auto;
			margin-right: auto;
			text-align: left;
		}
	</style>
   
</head>

<body>
<div id="main-wrapper">
	I'm a centered page :)
</div>
</body>
</html>
__________________
"Imagination is more important than knowledge."
Albert Einstein
Reply With Quote