对图片使用max-width和max-height,图片会按照父容器宽高自动缩放,并保持图片原本的长宽比,图片相对不变形。

1
2
3
4
5
6
img{
width: auto;
height: auto;
max-width: 100%;
max-height: 100%;
}