I have a responsive website, where I am resizing all my images in the corresponding CSS3 media querie's viewports. I'm wondering if theres an easier way to state that I want all my images to resize maintaining their original stated dimensions as opposed to manually resizing each accordingly with max-height, width, etc. Any suggestions?

EG Below.

}

/* Smartphones (portrait) ----------- */
@media only screen and (max-width : 320px) {

#logoimg { max-height: 100px; max-width: 100px; }

}
link|improve this question

54% accept rate
Also would prefer to keep it CSS /CSS3, muchas gracias! – cam77 Feb 17 at 17:03
feedback

1 Answer

I believe declaring img {max-width:100%} should do the trick. The image will scale down and maintain its dimensions.

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.