Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm trying to center the body element on my HTML page.

enter image description here

Basically, in the CSS I set the body element to be display: inline-block; so that it is only as wide as its contents. That works fine. However, margin: 0px auto; doesn't center it on the page.

Does anyone know how to fix this? I want the big blue square to be centered on the page, not floating to the left like it is now.

Here's my CSS:

body {
    display: inline-block;
    margin: 0px auto;
    text-align: center;
}
share|improve this question
Should those other boxes not be inside the body? – barro32 Jun 3 '12 at 18:17
I would suggest not to centralize body, in fact, make a centered div – Asif Jun 3 '12 at 18:18
you should never center the body. take a look at freecsstemplates.com --- you'll designers always use divs – metal_fan Jun 3 '12 at 18:29

4 Answers

up vote 3 down vote accepted

Apply text-align: center; on the html element.

A better approach though is to have an inner container div, which will be centralized, and not the body.

share|improve this answer
This is exactly what was requested, why is it getting down voted? jsfiddle.net/gA9La/2 – barro32 Jun 3 '12 at 18:22
This works perfectly. Thanks. – Ryan Peschel Jun 3 '12 at 18:23
I have edited my answer. See the better approach. – Madara Uchiha Jun 3 '12 at 18:30

You have to specify the width to the body for it to center on the page.

Or put all the content in the div and center it.

<body>
    <div>
    jhfgdfjh
    </div>
</body>​

div {
    margin: 0px auto;
    width:400px;
}

share|improve this answer
Hmm.. I figured this might have been the case but.. what if I don't know the size in advance? – Ryan Peschel Jun 3 '12 at 18:18
1  
Then use a percentage – Alex W Jun 3 '12 at 18:19
I tried setting the width and using a percentage but neither of them centered the body. – Ryan Peschel Jun 3 '12 at 18:21
@SRN -- what's with the margin if you are testing it with just text ? text can be centered with just text-align:center also.. check : jsfiddle.net/gA9La/1 – Asif Jun 3 '12 at 18:21
No I'm not centering just text. Most of the elements are divs. – Ryan Peschel Jun 3 '12 at 18:22

a very detailed procedure as well as some others with pros and cons. I liked it

blog.themeforest.net/tutorials/vertical-centering-with-css/

share|improve this answer
    body
    {
        width:80%;
        margin-left:auto;
        margin-right:auto;
    }

This will work on most browsers, including IE.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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