You Are Here Home > Create a Centered Page – Fixed Page

Create a Centered Page – Fixed Page

This is the most simple form of a centered web page:

<!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">
	Centered Page
</div>
</body>
</html>
Create a Centered Page – Fixed Page
Filed under: CSS   Posted by: Hamid

No Comments »

No comments yet.

RSS feed for comments on this post. TrackBack URL

Leave a comment