vote up 0 vote down star

I would like to display all my content in a div that is 800px wide, centred in the page. That way, all browser window widths are catered for. How do I go about doing that?

flag

71% accept rate

2 Answers

vote up 5 vote down check

Set your div CSS as follows:

#container {
  width: 800px;
  margin: 0 auto;
}
link|flag
as Raithlin says – mdja May 20 at 12:18
You will also need to set text-align:center; on your body tag otherwise it won't work for old versions of IE – Matthew James Taylor May 21 at 0:33
vote up 4 vote down

I would also recommend adding text-align:left; to the container div and adding text-align:center; to the body tag. Reason being that Internet Explorer 6.0 will not handle the auto margins.

body {
      text-align:center;}

#container {
      margin: 0px auto;
      text-align:left;
      width: 800px;}
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.