Forum Moderators: not2easy

Message Too Old, No Replies

Aligning the main container div in middle of the page

center aligning the main container of the website

         

ankitbhatia

6:17 am on Jul 18, 2008 (gmt 0)

10+ Year Member



Hi all!

i want to align the main container div in the middle of the page, which means that i want to leave equal white space on the left and right side of the main div.

Do any of you have some suggestions on it?

dreamcatcher

7:09 am on Jul 18, 2008 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



body {
text-align:center;
}
#wrapper {
width:800px;
margin:0 auto;
}

<div id="wrapper">
Content..
</div>

dc