I'm trying to vertically center some text besides two image links. I've done this dozens of times before but for some reason it isn't working right now.
Here's the code: http://jsfiddle.net/KRWNw/
<style type="text/css">
#social-icons {
height:32px;
line-height:32px;
}
</style>
<div id="social-icons">
Connect:
<a href="#">
<img src="http://mydomain.com/rodi/images/facebook.png" width="32" height="32" />
</a>
<a href="#">
<img src="http://mydomain.com/rodi/images/youtube.png" width="32" height="32" />
</a>
</div>
If I take the images out the text aligns perfectly, but with the images in it won't align.
What am I doing wrong??
Thank you!