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 set a div centered inside another div.

This is the html page:

<body>
<div id="divParent">
    <div id="divHeader" >
        <div id="divHeaderText">
        </div>
    </div>
    <div id="divBody">
    </div>
</div>
</body>

And this the style:

#divHeader {
    background-color: #C7C7C7;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    height: 80px;
    margin-bottom: 2px;
}
#divBody {
    background-image: url('images/GradientBackground.png');
    background-repeat: repeat-x;
    height: 300px;
}
#divHeaderText {
    margin: auto;
    width: 90%;
    height: 80%;
    background-color: #00FF00;
}

Why the smallest div doesn't left a space on its top?

share|improve this question
What exactly are you asking? – SLaks Jan 14 '10 at 18:14
I'm asking about center vertically. – VansFannel Jan 14 '10 at 20:09

4 Answers

up vote 3 down vote accepted

Your question is unclear.

If you're trying to vertically center the #divHeaderText within #divHeader, try adding margin-top: 13px;.

share|improve this answer

margin:auto does not work for vertical alignment. You must give an exact number in px, em, etc. In your example, this shouldn't be an issue, since you know the height of the parent container.

share|improve this answer

For centering horizontally, you can use text-align:center on inline elements or margin:0 auto with a set width on containers and block level elements.

For vertical centering of text, you can set the line-height property equal to the height of the containing div.

To center a div horizontally, you can apply a margin-top property to space it away into the center.

Please note that design questions are more appropriate for http://www.doctype.com/ as SO is largely geared towards server-side languages and application programming.

share|improve this answer
#divHeaderText {
margin: auto;
width: 90%;
height: 64px; /* 80% of 80px */
margin-top: 8px; /* (80 - 64) / 2 = 8 */
background-color: #00FF00;
}
share|improve this answer
Have you tried? I'm using Internet Explorer 8 and Firefox 3.5.7 and this solution doesn't work. I'm using firebug and I see that divHeaderText is outside divHeader. – VansFannel Jan 15 '10 at 16:22

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.