CSS中设置元素<img>max-width和width的区别
img {
max-width: 100%;
height: auto;
}最大宽度是以图片真实宽度
img {
width: 100%;
height: auto;
}设置img元素宽度为屏幕宽度
img {
max-width: 100%;
height: auto;
}最大宽度是以图片真实宽度
img {
width: 100%;
height: auto;
}设置img元素宽度为屏幕宽度