Resize image proportionally with CSS? [duplicate]

To resize the image proportionally using CSS:

img.resize {
    width:540px; /* you can use % */
    height: auto;
}

Leave a Comment