Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I want to center a div which is added inside another div.

<div id="outerDiv">
    <div id="innerDiv">
    </div>
</div>

This is the CSS I am currently using.

    #outerDiv{
        width: 500px;
        height: 500px;
        position:relative;
    }

    #innerDiv{
        width: 284px;
        height: 290px;
        position:absolute;
        top: 50%;
        left:50%;
        margin-top: -147px;
        margin-left: -144px;
    }

As you can see,the approach I use now depends on values for width and height of innerDiv.If the width/height changes, I will have to modify the margin-top and margin-left values.Is there any generic solution that I can use to center the innerDiv always irrespective of its size?

I figured out that using margin:auto can horizontally allign the innerDiv to the middle.But what about vertical allign middle?

share|improve this question
vertical centering is a very common problem - you can find some more tips here : jakpsatweb.cz/css/css-vertical-center-solution.html – JMax Jun 27 '11 at 8:24
what if you do margin-top: auto; margin-bottom: auto; – Muhammad Umer Mar 14 at 13:43

3 Answers

up vote 16 down vote accepted

Vertical align middle works, but you will have to use display: table-cell on your parent element and display: inline-block on the child. This solution is not gonna work in IE6 & 7. Yours is the saver way to go for those. But since you tagged your question with css3 and HTML5 i was thinking you don't care.

here is an example: http://jsfiddle.net/mcSfe/

tested in: FF4, FF3.5, Safari 5, Chrome 11 & 12, and IE9.

Works

HTML

<div class="cn"><div class="inner">your content</div></div>

CSS

div.cn {
  display: table-cell;
  width: 500px;
  height: 500px;
  vertical-align: middle;
  text-align: center;
}

div.inner {
  display: inline-block;
  width: 200px;
  height: 200px;
  text-align: left;
}
share|improve this answer
+1 Would the OP need to wrap any text inside another container if centered text was not desired? – andyb Jun 27 '11 at 8:37
you can reset it for the inner div: jsfiddle.net/mcSfe/2 – meo Jun 27 '11 at 8:39
Looks good to me. Nice solution. – andyb Jun 27 '11 at 8:40
+1 - but reader should be aware that meo only gets away with this answer because the post is tagged as html5 and css3 – Steve Jun 27 '11 at 8:43
There are some complicated workarounds for the annoying IE's to but they need some additional markup :( jakpsatweb.cz/css/css-vertical-center-solution.html – meo Jun 27 '11 at 8:47
show 3 more comments

for innerdiv which do not specify it's height value,there is no pure css solution to make it vertically centered.a javascript solution could be get the innerdiv's offsetHeight,then calculate the style.marginTop.

share|improve this answer

I know that question was created year ago... Anyway thanks CSS3 you can easily vertically aligns div in div (example there http://jsfiddle.net/mcSfe/98/)

<div style="width: 100px; height: 100px">
<div>
Go to Hell!
</div>
</div>

div
{
display:-moz-box;
-moz-box-align:center;
} 
share|improve this answer
3  
This does not seem to work in Safari. – sho Mar 12 at 16:48

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.