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

Possible Duplicate:
How to properly vertically align an image

Image size changes but the div size is fixed

These are CSS but not working. Is it possible to achieve this without using background feature of CSS.

This is CSS class which image is inserted in.

    .PI
{
    top: 25px;
    position: absolute;
    width: 239px;
    height: 120px;
    line-height:120px;
    text-align: center;
    left:-2px;
      border-top: 1px solid #f7f7f7;
   background: #b5aeb1;
   background: -webkit-gradient(linear, left top, left bottom, from(#d9d9d9), to(#b5aeb1));
   background: -webkit-linear-gradient(top, #d9d9d9, #b5aeb1);
   background: -moz-linear-gradient(top, #d9d9d9, #b5aeb1);
   background: -ms-linear-gradient(top, #d9d9d9, #b5aeb1);
   background: -o-linear-gradient(top, #d9d9d9, #b5aeb1);
   -webkit-border-radius: 8px;
   -moz-border-radius: 8px;
   border-radius: 8px;
   -webkit-box-shadow: rgba(0,0,0,1) 0 1px 0;
   -moz-box-shadow: rgba(0,0,0,1) 0 1px 0;
   box-shadow: rgba(0,0,0,1) 0 1px 0;
   text-decoration: none;
   vertical-align: middle;  
}

.PI img
{
margin: auto;
vertical-align: middle;  
}
share|improve this question
I was just having this problem except inside an anchor that was floated. I ended up having to just get the image dimensions in PHP and determine the margin-left and margin-top for it because I could only get it to align horizontally. :( – animuson Sep 7 '11 at 15:35
1  
Does this answer your question? stackoverflow.com/questions/7273338/… – thirtydot Sep 7 '11 at 15:35
thirtdot this solved the problem : .PI img { position: absolute; top: 0; bottom: 0; left: 0; right: 0; margin: auto; } – MonsterMMORPG Sep 7 '11 at 15:42
Well, no problem, but that's not the answer I was advocating. You didn't learn from yesterday, I take it? :) – thirtydot Sep 7 '11 at 15:45

marked as duplicate by tereško, Neal, Leigh, DaveRandom, LittleBobbyTables Nov 2 '12 at 19:53

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

3 Answers

up vote 10 down vote accepted

that's quite a tricky problem, in my opinion.

have a look at this page for some tips on how to achieve this with maximum cross-browser compatibility. :)

I had the same problem a while ago, where I had to center images of varying size in containers of constant size, and it worked really well.

EDIT: it should be noticed that for this method to work, it is required that the container, in which the image is to be centered, has to be bigger than the image.

share|improve this answer
this one not working – MonsterMMORPG Sep 7 '11 at 15:41
@Mon it definitely is working. I used it myself on an image gallery, where I needed to center thumbnail images within div containers. have a look: link – Andreas Grapentin Sep 7 '11 at 16:08

this might be useful


    div {position:relative;}
    img {position:absolute;top:0;bottom:0;margin:auto;}
    .image {min-height:50px}

Reference : http://www.student.oulu.fi/~laurirai/www/css/middle/

share|improve this answer
2  
Very nice! It worked really nice! Thanks! Keep Answering Questions! – Henrique Foletto Sep 9 '12 at 20:11
1  
This worked a charm for me, thank you. – Rich Andrews Sep 26 '12 at 13:06
1  
This is nice, but doesn't work in IE 7 :( – Aram Kocharyan Dec 24 '12 at 6:58
3  
If you wish to also horizontally align the image, add left:0; right: 0; to img – jameskind Feb 2 at 3:09
1  
Brilliant! Thanks – toto_tico Apr 13 at 17:08
show 1 more comment

You could try setting the CSS of PI to display: table-cell; vertical-align: middle;

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.