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.
|
Why won't
CSS is so annoying. |
|||||||||||||
|
|
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.
Tested in FF3. |
|||||||||||||||||||||
|
|
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:middleThis one is easy: set the line-height of the text element to equal that of the container
Multiple-lines vertical-align:bottomAbsolutely position an inner div relative to it's container
Multiple-lines vertical-align:middleThis one is a little tricky. The correct CSS way is to do this:
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.
Isn't the standard way so much nicer? Friends don't let friends use Internet Explorer |
|||||||||||||||||||||
|
|
Here's an interesting article: |
|||||||||
|
|
Because you have to set the line-height to the height of the div for this to work |
|||
|
This code works with IE as well as FF:
|
|||||||
|
|
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) |
|||
|
|
Basically, you'll have to get down to CSS3 except for the sol.s provided.
|
||||
|
|
|
Another thing you can do is set the text's That's seriously the easiest way. |
||||
|
|
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. |
|||
|
|
|
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:
|
|||
|
|
|
You probably want this:
As others have suggested, try
CSS isn't annoying. You just don't read the documentation. ;P |
|||||||||
|
|
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. |
|||
|
|