12 Ağustos 2007 Pazar

A Simple Centered Fixed Width Layout

body {
/* this is actually to make IE 5.5 happy as most browsers
understand auto for margin left and right */
text-align: center;
}

div#container {
/* we want the text aligned left, not centered so we first
center it on BODY and then left on the main container */
width: 776px;
margin-right: auto;
margin-left: auto;
text-align: left;
}


0 Comments: