A Simple Centered Fixed Width Layout





6
Date Submitted Tue. Oct. 11th, 2005 1:20 PM
Revision 1 of 1
Beginner jag5311
Tags Centered | CSS | Fixed
Comments 0 comments
A Simple Centered Fixed Width Layout
<style type="text/css">
body {text-align: center;} /* this is actually to make IE 5.5 happy as most browsers understand auto for margin left and right */

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

Comments

There are currently no comments for this snippet.

Voting