vote up 0 vote down star
1

In a previous question, I learned how to keep a footer div at the bottom of the page. (see other question)

Now I'm trying to vertically center content between the header and footer divs.

so what I've got is:

#divHeader
{
    height: 50px;
}

#divContent
{
    position:absolute;
}

#divFooter
{
    height: 50px;
    position:absolute;
    bottom:0;
    width:100%;
}
<div id="divHeader">
    Header
</div>
<div id="divContent">
    Content
</div>
<div id="divFooter">
    Footer
</div>

I've tried creating a parent div to house the existing 3 divs and giving that div a vertical-align:middle; but that gets me nowhere.

flag

74% accept rate

4 Answers

vote up 1 vote down check

In a perfect world where CSS2 matters:

html,body {height:100%;}
body {display:table;}
div {display:table-row;}
#content {vertical-align:middle;}

&

<body>
<div>header</div>
<div id="content">content</div>
<div>footer</div>
</body>

In IE-filled world you have to use trick with absolute positioning that marxidad mentioned.

link|flag
vote up 1 vote down

In alternative, as far as I remember, you can using hacks like this (more info here).

link|flag
vote up 0 vote down

You need to either set the height of the div to fill the whole content area or its coordinates have to be in the center. Something like top:50%; left:50% but of course that will make the div a bit off to the bottom-right.

link|flag
If you add margin-top:-25%; margin-left:-25%; that should re-centre the element. – Ian Oxley Oct 16 '08 at 13:58
% in margin refers to size of container, not the element. You need to use absolute size there. – porneL Oct 16 '08 at 18:27
vote up -1 vote down

Maybe try:

#divHeader
{
    height: 50px;
}

#divContent
{
    /*position:absolute;*/
    width: 900px;
    margin-left: auto;
    margin-right: auto;
}

#divFooter
{
    height: 50px;
    position:absolute;
    bottom:0;
    width:100%;
}
link|flag

Your Answer

Get an OpenID
or

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