Width 100%: Aspect ratio of image

A + C:

img.resize-proportionally {
    max-width: 100%;
    height: auto;
}

As an aside, for the above to work, you shouldn’t attempt B.
Having width and height attributes in the img tag is good.

Leave a Comment