say i have

<div id ="outer" class="outer">
    <div id= "inner" class="inner">
      //some stuff
    </div>
</div>

the inner div has a dynamic height, it changes depending on what is inside the div. the outer div is just a container which is set to have the height of the window.

I want to set it so that the inner div is vertically centered within the outer div. Is there a way to do this easily in CSS or is JavaScript necessary?

THE SOLUTION I FOUND:

var container= document.getElementById("outer");
var inner= document.getElementById("inner");
var inHeight=inner.offsetHeight;

container.style.height=(window.innerHeight-10);
container.style.width=window.innerWidth;

var conHeight=container.offsetHeight;

inner.style.marginTop=((conHeight-inHeight)/2);

In case anyone else searching for a solution to the same problem, this worked for me.

emphasized text

link|improve this question

Related question with some useful suggestions: stackoverflow.com/questions/7206640/… – Artyom Feb 16 at 8:26
feedback

4 Answers

up vote 1 down vote accepted

try this out http://jsfiddle.net/gLChk/12/

but it won't be supported in IE<8 browsers. To make it work on all the browsers, you'll have to write a js which will find the height of .inner and apply these css properties

$(document).ready(function(){
var inner = $('.inner'),
    ht = inner.height();

inner.css({'position':'absolute','top':'50%','margin':-ht/2+'px 0 0 0'});
});

Hope this helps. :)

link|improve this answer
i think i did pretty much the same thing only using JS instead of JQuery. see my question. I added the solution I came up with. – moesef Feb 16 at 9:19
Oh...well I didn't see your updated answer...well that'll work too. :) – Abhidev Feb 16 at 9:43
literally doing the same thing but just in different ways. – moesef Feb 16 at 18:18
feedback
.outer {
    display: table;
    position: relative;
    width:100%;
    height:200px;
    border:1px red solid;
}
.inner {
    display: table-cell;
    position: relative;
    vertical-align: middle;
}
link|improve this answer
please note it will not work in IE7 – mkk Feb 16 at 8:28
feedback

Try it with

.inner {
top: 50%;
bottom: 50%;    
}

jsfiddle

greets

link|improve this answer
3  
With this method wouldn't you need to subtract the height of the inner div / 2 from 50% to get the 'exact' vetical centering? – dougajmcdonald Feb 16 at 8:16
@dougajmcdonald you are right... – CyrillC Feb 16 at 8:18
if you check it properly, its not exactly vertically in middle. – Abhidev Feb 16 at 8:57
feedback

use:

.inner
{
    margin-top:auto;
    margin-bottom:auto;
}
link|improve this answer
I actually tried this and it won't work jsFiddle – CyrillC Feb 16 at 8:10
i actually think this will work... but it turns out that my outer div is not set to the height and width of the window.... – moesef Feb 16 at 8:13
This doesn't work vertically only horizontal – RepWhoringPeeHaa Feb 16 at 8:29
feedback

Your Answer

 
or
required, but never shown

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