Ok this is the div structure.

  <div class="DivParent"> 
  <a href="#">

  <div class="DivWhichNeedToBeVerticallyAligned"></div>

  </a>    
  </div>

DivParent has fixed width and height values but DivWhichNeedToBeVerticallyAligned does not have fixed height values.

If you make DivParent display:table-cell; you can vertically align DivWhichNeedToBeVerticallyAligned but i don't want to use that feature since it causes some mess.

A href tag link should be same size with the divParent i mean whole divparent has to be clickable. like display:block.

So are there any CSS way of vertically aligning or lightweight jquery solution would also help.

Thank you.

Here jsfiddle : http://jsfiddle.net/XHK2Z/

*

link|improve this question

1  
What's wrong with display:table-cell? – Pumbaa80 Sep 17 '11 at 8:19
feedback

3 Answers

up vote 2 down vote accepted

You can use an extra helper to achieve vertical alignment in a block with fixed height.

Look at this: http://jsfiddle.net/kizu/7Fewx/

There you must have a helper near a block you want to align with:

.DivHelper {
    display: inline-block;
    vertical-align: middle;
    height:100%;
}

And add display: inline-block; vertical-align: middle; to .DivWhichNeedToBeVerticallyAligned

link|improve this answer
thanks this is working pretty good but i updated question can you check again :) – MonsterMMORPG Sep 17 '11 at 22:33
i also made jsfiddle : jsfiddle.net/XHK2Z – MonsterMMORPG Sep 17 '11 at 22:38
1  
It's because you use an extra non-inline-block element. One of the way to make it work: move link to wrapper: jsfiddle.net/kizu/XHK2Z/1, and another, is to move helper into a: jsfiddle.net/kizu/XHK2Z/2. Anyway, it's better not to use divs inside a, it's ok in HTML5, but you still must be cautious with this and avoid it when possible – kizu Sep 18 '11 at 6:15
Thank you so much for this! – JackMahoney Apr 29 at 21:32
feedback

There is no way to do this with CSS without knowing the height of the child div.

With jQuery, you could do something like this.

var parentHeight = $('#parent').height();
var childHeight = $('#child').height();
$('#child').css('margin-top', (parentHeight - childHeight) / 2);
link|improve this answer
feedback

if the parent don't have any other child. this would be a css only "hack"

DivParent{line-height:100px /*the div actual height*/ }
.DivWhichNeedToBeVerticallyAligned{display:inline-block}

another hack is

DivParent{height:100px; position:relative}
.DivWhichNeedToBeVerticallyAligned{height:20px; position:absolute; top:50%; margin-top:-10px;}
link|improve this answer
thanks for answer. both hack failed. second one vertically aligned but since you define height it ruins everything :D – MonsterMMORPG Sep 17 '11 at 22:12
aligning vertically is hacky. You will need JS at the end. Just like Facebook: facebook.com/notes/facebook-engineering/… – Mohsen Sep 18 '11 at 3:00
feedback

Your Answer

 
or
required, but never shown

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