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

How to properly vertical-align this image in the .frame element:

<div class="frame" style="height: 25px;">
    <img src="http://jsfiddle.net/img/logo.png" />
</div>

.frame's height is fixed and image's height is unknown. I can add new elements in .frame if that's the only solution. I'm trying to do this on IE≥7, Webkit, Gecko.

See the jsfiddle here: http://jsfiddle.net/4RPFa/61/

share|improve this question
vertical-align in what manner? middle? top? baseline? – steveax Sep 2 '11 at 18:48
middle; the margin between .frame's top-border and image's top must be equal to the margin between .frame's bottom-border and image's bottom. – arnaud576875 Sep 2 '11 at 18:51
so in which browser/OS setup is the above fiddle not working properly? because in my ie7 this works just fine – Benjamin Udink ten Cate Sep 4 '11 at 13:56
It doesn't work properly on Firefox and IE>7 – arnaud576875 Sep 4 '11 at 14:00

10 Answers

up vote 67 down vote accepted
+500

The only (and the best cross-browser) way as I know is to use an inline-block helper with height: 100% and vertical-align: middle on both elements.

So there is a solution: http://jsfiddle.net/kizu/4RPFa/74/

Or, if you don't want to have an extra element in modern browsers and don't mind using IE expressions, you can use a pseudo-element and add it to IE using a convenient Expression, that runs only once per element, so there won't be any perfomance issues:

The solution with :before and expression() for IE: http://jsfiddle.net/kizu/4RPFa/76/


How it works:

  1. When you have two inline-block elements near each other, you can align each to other's side, so with vertical-align: middle you'll get something like this:

    Two aligned blocks

  2. When you have a block with fixed height (in px, em or other absolute unit), you can set the height of inner blocks in %.

  3. So, adding one inline-block with height: 100% in a block with fixed height would align another inline-block element in it (<img/> in your case) vertically near it.
share|improve this answer
Awesome! Pure-CSS and works in IE7-9, Chrome, Firefox. Could you explain how it works ? – arnaud576875 Sep 5 '11 at 16:20
+1 works as advertised @arnaud576875 For Firefox 6 it seems that merely removing the line-height from .frame makes it work. For IE, I couldn't figure it out. – ANeves Sep 5 '11 at 16:39
1  
Added an explanation in an edit. Ask about anything else and I'll explain it :) – kizu Sep 5 '11 at 17:31
1  
You can see for yourself: jsfiddle.net/kizu/Pw9NL — only inline boxes don't generate a box, but all other cases work ok. – kizu Sep 6 '11 at 5:01
2  
The funny thing is I could do this in 2 seconds using tables, yet am required to use browser hacks like nobody's business to get this working in pure CSS. Great solution btw :) – dana Dec 27 '12 at 23:14
show 6 more comments

A PURE CSS Solution:

http://jsfiddle.net/3MVPM/

The CSS:

.frame {  
    margin: 1em 0;  
    height: 35px;
    width: 160px;
    border: 1px solid red;
    position: relative;
}  
img {  
    max-height: 25px;  
    max-width: 160px;  
    position: absolute;  
    top: 0;  
    bottom: 0;  
    left: 0;  
    right: 0;  
    margin: auto;  
    background: #3A6F9A;  
}

Key stuff

// position: relative; - in .frame holds the absolute element within the frame
// top: 0; bottom: 0; left: 0; right: 0; - this is key for centering a component
// margin: auto; - centers the image horizontally & vertically
share|improve this answer
Nice! But it doesn't seem to work in IE7 :( – arnaud576875 Sep 5 '11 at 13:50
Please let me refer you to a guide here that even works for IE5 (deducting from what i've read so far in the post) webmasterworld.com/css/3350566.htm – matejkramny Sep 5 '11 at 14:38

idk if this is the solution you are looking for but you could do this:

http://jsfiddle.net/DZ8vW/1

.frame {
    height: 25px;      /* equals max image height */
    line-height: 25px;
    width: 160px;
    border: 1px solid red;

    text-align: center; margin: 1em 0;
    position: relative; /* Changes here... */
}
img {
    background: #3A6F9A;
    max-height: 25px;
    max-width: 160px;
    top: 50%;           /* here.. */
    left: 50%;           /* here... */
    position: absolute; /* and here */
}    


$("img").each(function(){
    this.style.marginTop = $(this).height() / -2 + "px";
})
share|improve this answer
Nice. Any chance for a pure-css solution ? – arnaud576875 Sep 4 '11 at 18:38
Unfortunately no unless you want to use tables or drop compatibility with older versions of IE. :( If you knew the exact size of the images before hand it would be different, but not without that it's not possible with CSS alone. – Joseph Marikle Sep 4 '11 at 18:54
@Joseph How would you fix it with tables? – Benjamin Udink ten Cate Sep 4 '11 at 19:59
@Benjamin Udink ten Cate It's messy but it could be done this way: jsfiddle.net/DZ8vW/2 (this is not advised, but should work) – Joseph Marikle Sep 4 '11 at 20:33
Well it suits arnauds needs perfectly. No JS, only CSS and HTML. – Benjamin Udink ten Cate Sep 5 '11 at 0:41
show 2 more comments

Background image solution I removed the image element all together and set it as background of the .frame element

http://jsfiddle.net/URVKa/2/

this atleast works fine on IE8, FF6 and Chrome13

I checked, this solution will not work to shrink images larger then 25px height. There is a property called background-size which does set the size of the element, but it is CSS3 which would conflict with IE7 requirement.

Id advice you to either redo your browser priorities and design for the best available browsers, or get some serverside code to resize the images if you'd want to use this solution

share|improve this answer
jsfiddle.net/4RPFa/58 doesn't works :( – arnaud576875 Sep 4 '11 at 13:18
updated my answer to properly work on more then just the latest browsers – Benjamin Udink ten Cate Sep 4 '11 at 13:31
Very nice solution, however I expect some images to be bigger than the container, and in this case I planed to use max-height / max-width on them. Any way to do this with background images? – arnaud576875 Sep 4 '11 at 13:34
yes; I've updated the question and the jsfiddle: jsfiddle.net/4RPFa/61 – arnaud576875 Sep 4 '11 at 13:38
+1 for this, I'd recommend this solution for any fixed-dimension scenario. – Wex Sep 5 '11 at 19:44

Try this solution with with pure css http://jsfiddle.net/sandeep/4RPFa/72/ May be the main problem with your html. Your not use quote when you define class & image height in your html.

CSS:

.frame {
    height: 25px;      /* equals max image height */
    width: 160px;
    border: 1px solid red;
    position:relative;
    margin: 1em 0;
    top: 50%;
    text-align: center;
    line-height: 24px;
    margin-bottom:20px;
}

img {
    background: #3A6F9A;
    vertical-align: middle;
    line-height:0;
    margin:0 auto;
    max-height:25px;
}

EDIT :

When i work around with the img tag it's leave 3px to 2px space from top. Now i decrease line-height & it's work. css:

    .frame {
        height: 25px;      /* equals max image height */
        width: 160px;
        border: 1px solid red;
        margin: 1em 0;
        text-align: center;
        line-height:22px;
        *:first-child+html line-height:24px; /* for IE7 */
    }

    img {
        background: #3A6F9A;
        vertical-align: middle;
        line-height:0;    
        max-height:25px;
        max-width:160px;
    }
@media screen and (-webkit-min-device-pixel-ratio:0) {
    .frame {
        line-height:20px; /* webkit browsers */
    }

the line-height property is render differently in different browsers. So; we have to define different line-height property browsers

Check this example http://jsfiddle.net/sandeep/4be8t/11/

Check this example about line-height different in different browsers input height differences in Firefox and Chrome

share|improve this answer
Doesn't work (at least in Firefox). For the missing quotes, this is allowed in HTML5 (don't know which doctype is used in jsfiddle though) – arnaud576875 Sep 5 '11 at 13:40

http://jsfiddle.net/MBs64/

.frame {
    height: 35px;      /* equals max image height */
    width: 160px;
    border: 1px solid red;
    text-align: center; 
    margin: 1em 0;
    display: table-cell;
    vertical-align: middle;
}
img {
    background: #3A6F9A;
    display: block;
    max-height: 25px;
    max-width: 160px;
}

The key property is display: table-cell; for .frame. Div.frame is displayed as inline with this, so you need to wrap it in a block element.

This works in FF, Opera, Chrome, Safari and IE8+.

UPDATE

For IE7 we need to add a css expression:

*:first-child+html img {
    position: relative;
    top: expression((this.parentNode.clientHeight-this.clientHeight)/2+"px");
}
share|improve this answer
Great. Any hack for IE7 that would avoid the javascript? – arnaud576875 Sep 4 '11 at 18:40
I'm not sure, but maybe css expressions would help. But they are javascript too. The only difference, that you write them in css files, not in js. – Webars Sep 5 '11 at 5:46
Yes, nice idea. That would be more manageable (the script is automatically ran as needed), and as it's supposed to be IE7-only it's ok. – arnaud576875 Sep 5 '11 at 8:30

try,

.frame {
    height: 25px;      /* image height */
    line-height: auto;
    width: 160px;      /* image width */
    border: 1px solid red;

}
img {
    background: #3A6F9A;
    display:table-cell;
    vertical-align: middle;
}
share|improve this answer
doesn't seem to work: jsfiddle.net/4RPFa/19 – arnaud576875 Sep 1 '11 at 17:32
only ie7, just put line-height:25px; – anglimasS Sep 1 '11 at 17:38
it doesn't seem to be properly aligned even on firefox and chrome ( jsfiddle.net/4RPFa/19 ) – arnaud576875 Sep 1 '11 at 17:44
jsfiddle.net/4RPFa/34 – anglimasS Sep 1 '11 at 17:54
doesn't work when fixing the .frame's height: jsfiddle.net/4RPFa/35 – arnaud576875 Sep 1 '11 at 18:23
show 2 more comments

If you can live with pixel-sized margins, just add font-size: 1px; to the .frame. But remember, that now on the .frame 1em = 1px, which means, you need to set the margin in pixels too.

http://jsfiddle.net/feeela/4RPFa/96/

EDIT: now its not centered anymore in Opera…

share|improve this answer

I have answered a similar question some time ago please visit it

How to vertical align image inside div

BTW here is the code

.frame{position:relative;}
.frame img {position:absolute;top:0;bottom:0;margin:auto;min-height:50px;}
share|improve this answer

I had the same problem. This works for me:

<style type="text/css">
div.parent {
     position: relative;
}

img.child {
    bottom: 0;
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    top: 0;
}
</style>

<div class="parent">
    <img class="child">
</div>
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.