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:
Use case 1 (works): http://jsfiddle.net/Jp5AQ/2/
Use case 2 (works): http://jsfiddle.net/Jp5AQ/3/
But if I also want to scale up the image until a dimension is 100% of the container ?
- Use case 3 (doesn't work): http://jsfiddle.net/Jp5AQ/4/
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.