Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Need to vertically align images within a containing box like this:

   <span class="image-box"><img src="/1_thumb.jpg"></span>

with this:

.image-box{
  width: 75px;
  height: 75px;
  display: block;
  float: left;
  text-align: center;
  // ????
  vertical-align: text-top;
}

The vertical-align is not working correcty. How would I align this?

thx

share|improve this question
How are you trying to vertically align them? – Blender Nov 5 '11 at 0:46

1 Answer

Assign this CSS to the image vertical-align: middle; and add this line of CSS to the .image-box line-height: 75px;. The value for height and line-height should be the same.
Example: http://jsfiddle.net/SjKUa/1/

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.