Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Is there a way to resize images retaining their proportions with CSS?

The container has a fixed width and height

<div class="container">
   <img class="theimage" src="something" />
</div>

and the reason I'm asking is because the layout can change (from list to icons via a class) and the images need to be resized (about 40% less) in proportion.

I know how to do it with JavaScript and also how to resize via CSS, but don't really believe it can be done in proportion with CSS, unless there is some clever way.

share|improve this question
1  
possible duplicate of Resize image proportionally with CSS? – Yi Jiang Mar 7 '11 at 10:19
good find! thanks for pointing that out to me. – jackJoe Mar 7 '11 at 10:21

2 Answers

up vote 0 down vote accepted

this might help you: http://css-tricks.com/how-to-resizeable-background-image/

share|improve this answer
thanks for the link! – jackJoe Mar 7 '11 at 10:25
Well, after all this time I still haven't found a definite way to do this, and @corroded's link is useful, so I'm choosing this reply. – jackJoe Jun 15 '11 at 15:47
.theimage{
    width:100%;
    height:auto;
}

or

.theimage{
    width:auto;
    height:100%;
}

Depending on how you wanna give the scale preference... :) :)

Thats all.

share|improve this answer
that's not it, check here: jsfiddle.net/jackJoe/fDNah – jackJoe Mar 7 '11 at 12:36
Oh! My mistake .. I corrected it now you can try – Arindam Paul Mar 8 '11 at 5:11
but that doesn't solve the issue, I don't know the proportion of every image and so I can't set just one to 100%, just check my example at jsfiddle and try for yourself. – jackJoe Mar 8 '11 at 11:03
Are you saying loosing aspect ratio is fine with you ... only thing that concerns you, is to fit the image in that div?? If not then one of the above will solve your problem depending on which one becomes bottleneck for you.. is it the width or height... But if it is otherwise .. just use width:100%, height:100%... jsfiddle.net/arindam89/fDNah/12 – Arindam Paul Mar 8 '11 at 13:01
no, I need to retain the proportion (check the title of this question), and this is not javascript I can't find out wich is the biggest (the height or the width), so that CSS you suggested won't work for me, do you see my problem? – jackJoe Mar 14 '11 at 10:10

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.