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

Why won't vertical-align: middle work? And yet, vertical-align: top does work.

<div>
   <img style="width:30px;height:30px">
   <span style="vertical-align:middle">Doesn't work.</span>
</div>

CSS is so annoying.

share|improve this question
250  
+1 for CSS is so annoying. It's such a horrible language construct they need to replace CSS with a language that actually works as expected for position and aligning elements instead of needing tons of nested containers for everything. – Chris Marisic Jan 25 '10 at 23:51
12  
Certainly can't step in and defend CSS from a language standpoint, but a lot of my frustration has been from the fact that only certain features work depending on the browser you're in. Even today, when the modern "browser wars" are more about who follows the standards the best, there are still caveats abound and really limits the feature list. – Mattygabe Mar 9 '11 at 13:15
10  
Heresy: <td>img</td><td valign="middle">text</td> – T4NK3R Apr 25 '12 at 15:22

12 Answers

up vote 554 down vote accepted

Actually, in this case it's quite simple: apply the vertical align to the image. Since it's all in one line, it's really the image you want aligned, not the text.

<!-- moved "vertical-align:middle" style from span to img -->
<div>
   <img style="width:30px;height:60px;vertical-align:middle">
   <span style="">Works.</span>
</div>

Tested in FF3.

share|improve this answer
6  
btw: I completely agree that CSS layout can be a nightmare. It makes a lot of things much easier, but some things are difficult. – Michael Haren Jan 28 '09 at 21:13
6  
Tested in IE 6 & 7. Works a treat. – Ben Jul 8 '09 at 23:00
51  
"Since it's all in one line, it's really the image you want aligned, not the text." -- No, the image is fine where it's at. We want the text aligned. Not the image. -- I get that this works (in some circumstances, ex: when you're not using "float:left" on the image...), but it's just bizarre and unintuitive that to physically move the text to the vertical middle you would have to apply an attribute to the image next to it instead. – BrainSlugs83 Sep 28 '11 at 2:51
5  
@BrainSlug83 It's certainly not bizarre but I can see how newcomers can be tripped up by this. By default an image will be placed on the text baseline. All you are doing is moving where the image is attached relative to the text. As for using float:left, you should be doing that either on the block that contains the image and text, or on the text itself. – jamesrom Dec 7 '11 at 0:57
6  
@BrainSlugs83 Agreed that it can be seen as counter-intuitive. It takes a bit of a mental shift, because according to CSS, what you need to do is center the image to the text. Not the text to the image. – Greg Pettit Jan 25 '12 at 4:26
show 7 more comments

As with most shortcomings of CSS in the wild, this is Microsoft's fault for taking eleven years to support it. Here's some simple techniques for vertical-align:

One-line vertical-align:middle

This one is easy: set the line-height of the text element to equal that of the container

<div>
  <img style="width:30px; height:30px;">
  <span style="line-height:30px;">Doesn't work.</span>
</div>

Multiple-lines vertical-align:bottom

Absolutely position an inner div relative to it's container

<div style="position:relative;width:30px;height:60px;">
  <div style="position:absolute;bottom:0">This is positioned on the bottom</div>
</div>

Multiple-lines vertical-align:middle

This one is a little tricky. The correct CSS way is to do this:

<div style="display:table;width:30px;height:60px;">
  <div style="display:table-cell;height:30px;">Doesn't work in IE!</div>
</div>

I order to get this to work correctly across the board, you'll have to hack the CSS a bit. Luckily, there is an IE bug that works in our favor. Setting top:50% on the container and top:-50% on the inner div, you can acheive the same result. We can combine the two using another feature IE doesn't support: advanced CSS selectors.

<style type="text/css">
  #container {
    width: 30px;
    height: 60px;
    position: relative;
  }
  #wrapper > #container {
    display: table;
    position: static;
  }
  #container div {
    position: absolute;
    top: 50%;
  }
  #container div div {
    position: relative;
    top: -50%;
  }
  #container > div {
    display: table-cell;
    vertical-align: middle;
    position: static;
  }
</style>

<div id="wrapper">
  <div id="container">
    <div><div><p>Works in everything!</p></div></div>
  </div>
</div>

Isn't the standard way so much nicer?

Friends don't let friends use Internet Explorer

share|improve this answer
104  
+1 for "Friends don't let friends use Internet Explorer". – Artur Gaspar Jun 18 '11 at 19:57
1  
Very helpful answer. More informative about more cases than the accepted. – Benji XVI Jul 21 '11 at 19:01
9  
Answer is good and all...but @Artur Gaspar and 5 others gave him a vote for that statement? This site is turning into a youtube where bullshit comments rise to the top. – Shawn Mclean Oct 8 '11 at 22:11
1  
@ShawnMclean The upvoting of silly comments is way less of a problem then vote trading, circle jerking. – Tim May 14 '12 at 19:36
1  
The display:table and display:table-cell CSS selectors work great, except, of course, in IE7 and below. After tearing my hair out for several hours, I decided that I didn't really need to deal with anyone that still used IE7-. – cbannerjee Apr 3 at 13:51
show 2 more comments

Here's an interesting article:

Understanding vertical-align

share|improve this answer
2  
vertical-align:middle on the image does the trick. – sam Jan 28 '09 at 21:11
that's a cool resource, thanks Fistandantilus – Michael Haren Jan 28 '09 at 21:17
That site really shows why vertical-align is a screwed up as it is. Better than just having the solution on it's own. – Kzqai Sep 30 '11 at 21:15

Because you have to set the line-height to the height of the div for this to work

share|improve this answer
2  
And yet, doing this in tables would be achieved with "vertical-align: center". CSS blows. – sam Jan 28 '09 at 21:06
I tried setting line-height to 30px and it still doesn't work. – sam Jan 28 '09 at 21:08

This code works with IE as well as FF:

<div>
  <img style="width:auto; height:auto;vertical-align: middle;">
  <span>It does work on all browsers</span>
</div>
share|improve this answer
Isn't this the same answer as the one that was given in 2009 and was accepted as correct back then? – Mr Lister Jul 2 '12 at 14:48
3  
Yes...but with little change of "auto" to avoid hardcoding – HTMLnewBie Jul 3 '12 at 3:42

For the record, alignment "commands" shouldn't work on a SPAN, because it is an in-line tag, not a block-level tag. Things like alignment, margin, padding, etc won't work on an in-line tag because the point of inline is not to disrupt the text flow.

CSS divides HTML tags up into two groups: in-line and block-level. Search "css block vs inline" and a great article shows up...

http://www.webdesignfromscratch.com/html-css/css-block-and-inline/

(Understanding core CSS principles is a key to it not being quite so annoying)

share|improve this answer
text-align and vertical-align (with the exception of its application on td elements for legacy purposes) are specifically meant for inline and inline-block elements (span, img, etc). – Kevin Peno Jun 15 '12 at 17:45

Basically, you'll have to get down to CSS3 except for the sol.s provided.

-moz-box-align: center;
-webkit-box-align: center;
share|improve this answer

Another thing you can do is set the text's line-height to whatever the size of the images within the <div> are. Then set the images to vertical-align: middle;

That's seriously the easiest way.

share|improve this answer
Note that this doesn't work correctly if your content is spread over multiple lines. – Ahmad Alfy Nov 6 '12 at 11:31

background:url(../images/red_bullet.jpg) left 3px no-repeat;

The 3px is in place of "TOP" that i generally use. By increasing or decreasing that value i move the image to required height.

share|improve this answer

On a button in jquery mobile, that didn't quite work for all screen sizes. You can tweak it a bit by applying this style to the image:

.btn-image {
vertical-align:middle;
margin:0 0 3px 0;
}
share|improve this answer

You probably want this:

<div>
   <img style="width:30px; height:30px;">
   <span style="vertical-align:50%; line-height:30px;">Didn't work.</span>
</div>

As others have suggested, try vertical-align on the image:

<div>
   <img style="width:30px; height:30px; vertical-align:middle;">
   <span>Didn't work.</span>
</div>

CSS isn't annoying. You just don't read the documentation. ;P

share|improve this answer
3  
And if the image height is dynamic? I'm screwed :( PS, just because documentation exists for CSS doesn't make it annoying or unintuitive. – sam Jan 28 '09 at 21:13
Do you mean unannoying and intuitive? You didn't specify if he image's height is dynamic at all in your question, so I assumed the fixed height was what you were going to stick with. – strager Jan 28 '09 at 21:15
I'm with sam on this one. I assumed that items ought to be centered with whatever the img height turned out to be. I think we could all stand to cool down a bit though. – Michael Haren Jan 28 '09 at 21:16

It is frustrating, the only way (in general) to make something vertically align in the middle is using tables. Otherwise you have to get tricky.

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.