For a responsive design, i would like to scale down some images:
img { width:100%; height:auto; }
This works as expected, but if th
You could use max-width to prevent image width from becoming larger than original size.
max-width
img { width: auto; max-width: 100%; height: auto; }