I want to set vertical alignment of image inside a div. I use img { vertical-align:middle} but it is not working.
|
|
use line-height will solve the problem,
|
|||
|
This is a solution that doesn't require JavaScript (as my previous solution did). You can achieve what you want by assigning I feel I must warn you that you will need to test this in every browser you intend to support. Support for the The CSS:
You won't need the |
|||
|
|
|
If you're trying to do what I think, vertical align isn't going to work; you'll need to use positioning. In general, position the container relative, and then position the image absolute, with top and left set to 50%, and then move the image back to the center by setting negative margins equal to half the width / height. Here's a working example: http://jsbin.com/evuqo5/edit Basic CSS is this:
|
|||||
|
|
The following post has some useful references: Text Alignment w/ IE9 in Standards-Mode Also, depending on which version of IE you are testing against, you may end up needing some browser-specific hacks or some jQuery/JavaScript code. If you have to, use a one-row-one-cell table and take advantage of the |
|||
|
|
|
If you set the div The See this article from SitePoint for a detailed explanation.
|
|||||||||
|