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.

Ok, here's what this HTML elements looks like right now:

enter image description here

I'd like the text to be centered with the image. The image is 32x32px.

Here's my code:

<style>
div.interface { line-height: 32px; float: left; margin:10px; width:450px; font: 14px/27px 'CalibriRegular', Arial, sans-serif;  color: #646464; text-shadow: 1px 1px 1px #FFFFFF; padding-right:10px;}
</style>

<div class="interface"><img src="assets/icons/interface.png" />Filled with fun animations and eye-candy!  Complete with Retina graphics.</div>
share|improve this question
1  
check this question out: stackoverflow.com/questions/4414034/… – JCOC611 Feb 10 '11 at 3:05
@JCOC: Looks like just what I was needing. Sorry I didn't search around enough. Might as well duplicate your answer here so I can accept an answer. :) – sudo rm -rf Feb 10 '11 at 3:07
Nah, it's ok! I've copy pasted my answer and edited a bit to fit more your situation! – JCOC611 Feb 10 '11 at 3:10

2 Answers

up vote 16 down vote accepted

To center text vertically set the line-height to the same as the height, for example:

img{ height: 30px; }
#text{ line-height: 30px; }

And set vertical-alignment to middle:

#text{ line-height: 30px; vertical-align:middle; }
share|improve this answer
Thank you both. I'll accept JCOC's answer because he provided the right answer first. Coming as soon as it's available. Thanks! – sudo rm -rf Feb 10 '11 at 3:12
that should be vertical-align: middle; – stephenmurdoch Feb 10 '11 at 3:15
4  
and what is it? jk I edited it. – JCOC611 Feb 10 '11 at 3:19
1  
Keep in mind this only works if it's only a single line of text. – cdmckay Nov 13 '12 at 21:28

Add style="vertical-align: middle" to your <img /> tag.

See http://phrogz.net/CSS/vertical-align/index.html for a full explanation about the vertical-align tag.

share|improve this answer
Thanks for your answer! :) – sudo rm -rf Feb 10 '11 at 3:21

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.