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;  
}
link|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
feedback

2 Answers

up vote 2 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.

link|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 Henning Sep 7 '11 at 16:08
feedback

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

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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