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 have a problem with centering div in HTML (vertical & horizontal). My code looks something like this:

<div id="container">SOME HTML</div>

#container{
    width: 366px;
    height: 274px;
    margin: 50%;
    top: -137px;
    left: -188px;
    position:absolute;
}

Only chrome center this div in to the middle of the screen.

share|improve this question
4  
I may be missing something, but how are you expecting to centre a div if you're using absolute positioning? Are you assuming that all screens have the same size and resolution? – Aleks G Apr 24 '12 at 15:41

5 Answers

This will center the <div> horizontally:

#container{
    width: 366px;
    height: 274px;
    margin: 0 auto;
}

Centering vertically is not quite simple, you maybe have to use javascript for that, or you try this css solution.

share|improve this answer
#container{
    width: 366px;
    height: 274px;
    top: 50%;
    left: 50%;
    margin: -137px 0 0 -188px;
    position:absolute;
}
share|improve this answer
Thanx alot! ;) Now it works. – What Apr 24 '12 at 15:55

This does the trick (vertical & horizontal):

#container{
    position: absolute;
    width: 366px;
    height: 274px;
    left: 50%;
    top: 50%;
    margin-left: -183px; /* half width */
    margin-top: -137px; /* half height */
}
share|improve this answer

You could use:

#container {
    // Your other values, but remove position: absolute;
    margin: 0 auto;
}

Alternatively, you can do:

#wrapper, #container {
    border: 1px solid red;
    height: 500px;
    width: 600px;
}

#wrapper {
    bottom: 50%;
    right: 50%;
    position: absolute;
}

#container {
    background: yellow;
    left: 50%;
    padding: 10px;
    position: relative;
    top: 50%;
}

And you're HTML code:

<div id="wrapper">
    <div id="container">
        <h1>Centered Div</h1>
        <p>
            This div has been centered within your browser window.</p>
    </div>
</div>

That will center the <div> in the middle of the browser window.

share|improve this answer

Should be fine to use just CSS:

here is the demo

#container{
    width: 366px;
    height: 274px;
    margin: 50%;
    top: 50%;
    left: 50%;
    position:absolute;
    top:0;
    bottom:0;
    left:0;
    right:0;
}​
share|improve this answer
did not get, why it is-1 ? Is it wrong some how ? – AlexC Apr 24 '12 at 16:01

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.