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 am trying to vertically align two elements with different heights in a div:

<div class="footer-icons">
    <div id="footer-twitter">
         <img src="images/twitter.png" width="40" alt="">    
    </div>
    <div id="footer-fb">
         <div class="fb-like" data-href="http://facebook.com/user" data-send="false" data-layout="button_count" data-width="160" data-show-faces="false" data-font="arial"></div>
    </div>
</div>

The twitter div has a height of 40px, and the fb div has a height of 20px. What is currently happening is the fb div is vertically centered with the bottom edge of the twitter image. Here's the CSS:

.footer-icons{

padding-top:40px;
width:300px;
margin:auto;
text-align:center;
vertical-align:middle;
}

#footer-twitter{
display:inline-block;
}

#footer-fb{
display:inline-block;
}

What am I doing wrong?

share|improve this question
Both the FB & Twitter elements are pushed down 40px by the parent's padding-top. – Nick Carlson Sep 24 '12 at 17:37

2 Answers

up vote 0 down vote accepted

Put the vertical align on the inner divs

#footer-twitter{
  display:inline-block;
  vertical-align:middle;
}

#footer-fb{
  display:inline-block;
  vertical-align:middle;
}
share|improve this answer
Note that this is CSS3 and won't work in older browsers. – MDeSchaepmeester Sep 24 '12 at 17:37
Seems to work. thanks. – tariq Sep 24 '12 at 17:49

Define a line-height equal or greater than the bigger icon:

.footer-icons {
    ...
    line-height: 32px;
}
share|improve this answer

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.