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

Is there a css-only solution to scale an image into a bounding box ?

(keeping aspect-ratio)

I know this works if the image is bigger than the container:

img {
  max-width: 100%;
  max-height: 100%;
}

Example:

But if I also want to scale up the image until a dimension is 100% of the container ?

EDIT

Thanks to @Stephan_Muller for his excellent answer.

If you have the possibility to put your image as css background-image there is another good solution, thanks to CSS3. The only issue is IE8 compatibility.

share|improve this question
Do you mean like height: 100% and width: 100% ? do you have a desired dimension you want to reach? otherwise you could also stretch the image and force it to reach those dimensions too. – mikevoermans Apr 3 '12 at 13:42
jsfiddle.net/Jp5AQ/7 – jacktheripper Apr 3 '12 at 13:43
@mikevoermans Look at my two first examples: I want to strech the image until one of the dimensions is 100% and the other is <=100% – Wizcover Apr 3 '12 at 13:55
@jacktheripper Conserving aspect-ratio of course... – Wizcover Apr 3 '12 at 13:59
@gryzzly The examples speaks for themselves! If they had looked to the examples, that was obvious. – Wizcover Apr 3 '12 at 14:12
show 1 more comment

4 Answers

up vote 17 down vote accepted

No, there is no CSS only way to do this in both directions. You could add

min-width: 100%;
height: auto;

To the CSS rule to always have it 100% width and automatically scale the height to the aspect ratio, or the inverse (min-height: 100%; width: auto;) to always scale to max height and relative width. To do both, you will need to determine if the aspect ratio is higher or lower than it's container, and CSS can't do this.

The reason is that CSS does not know what the page looks like. It sets rules beforehand, but only after that it is that the elements get rendered and you know exactly what sizes and ratios you're dealing with. The only way to detect that is with JavaScript.

And although you're not looking for a JS solution I'll add one anyway if someone might need it. The easiest way to handle this with JavaScript is to add a class based on the difference in ratio. If the width-to-height ratio of the box is greater than that of the image, add the class "fillwidth", else add the class "fillheight". Then in css just set .fillwidth { width: 100%; height: auto; } and .fillheight { height: 100%; width: auto; }.

share|improve this answer
This affirms what I thought. – Wizcover Apr 3 '12 at 14:07
4  
Actually there is a solution: setting CSS3 background-size to contain. See my answer. – Wizcover Apr 4 '12 at 17:57

Thanks to CSS3 there is a solution !

The solution is to put the image as background-image and then set the background-size to contain.

HTML

<div class='bounding-box'>
</div>

CSS

.bounding-box {
  background-image: url(...);
  background-repeat: no-repeat;
  background-size: contain;
}

Test it here: http://www.w3schools.com/cssref/playit.asp?filename=playcss_background-size&preval=contain

Full compatibility with latest browsers: http://caniuse.com/background-img-opts

To align the div in the center, you can use this variation:

.bounding-box {
  background-image: url(...);
  background-size: contain;
  position: absolute;
  background-position: center;
  background-repeat: no-repeat;
  height: 100%;
  width: 100%;
}
share|improve this answer
1  
Nice one, although my answer isn't incorrect (you were asking about the img specifically) this is a great solution and I should've thought of that. The only problem is that IE 8 is still so widely used that I wouldn't want to rely on this yet, but nice catch nonetheless. – Stephan Muller Apr 5 '12 at 10:49
Yes you're right, your answer is not incorrect: I will mark it as accepted and integrate this specific solution in the question for those who google that. – Wizcover Apr 5 '12 at 11:23
1  
Set it to "cover" if you don't want any letterboxing: background-size: contain; – American Yak Dec 6 '12 at 16:55

Use width and height instead of max-width and max-height

div img {
   width: 100%;
   height: 100%;
   outline: solid 1px red;
} ​

img then will be 100% of the container size

http://jsfiddle.net/Jp5AQ/5/

share|improve this answer
Of course I'm looking for the way to keep aspect-ratio... I dont't want to scale the image to fit the box! – Wizcover Apr 3 '12 at 13:49
Then you need some javascript (e.g. using jQuery), detect the largest side of the image and set only that attribute to 100% (either width -OR- height, not both – bart s Apr 3 '12 at 13:50
@bart_s This is why I asked a CSS-only solution, this is in the question... – Wizcover Apr 3 '12 at 13:51
you can set only the height to 100% but then the container div should be wider than high always. – bart s Apr 3 '12 at 13:57
@bart_s Doesn't work if the image is very wide. – Wizcover Apr 3 '12 at 14:03

Are you looking to scale upwards but not downwards?

div {
    border: solid 1px green;
    width: 60px;
    height: 70px;
}

div img {
    width: 100%;
    height: 100%;
    min-height: 500px;
    min-width: 500px;
    outline: solid 1px red;
}

This however, does not lock aspect-ratio.

share|improve this answer
Of course I'm looking for the way to keep aspect-ratio... Look at my examples before to answer! – Wizcover Apr 3 '12 at 13:53
3  
Try to be a little more clear with your expectations before down-voting someone's answer. Especially when they've answered your question before you've cleared up your question with edits. – Jeffery Khan Apr 3 '12 at 13:54
1  
Also, try to be more polite. No one is going to help you if you talk that way. – gryzzly Apr 3 '12 at 14:07
@Artimuz My apologies if I miss-guided you, but it seemed unclear to me that you wished to keep aspect-ratio, which is why I commented on that specifically. Also, you'll notice that I pasted a snippet of your code from the examples. I believe keeping height: auto; will do that for you if you specify a width. – ericosg Apr 3 '12 at 14:09
@Jeff "Try to be a little more clear" ==> if something is not clear, comment the question and don't answer. Downvoting is not a bad thing, this is dicussed on meta here: if an answer is not complete or wrong for some reason, downvote. Then if the user edit is answer, remove the downvote. But this is not the place to debate, see you on meta. – Wizcover Apr 3 '12 at 16:18

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.