Scale image with CSS but limit to orignial size

前端 未结 3 1046
时光取名叫无心
时光取名叫无心 2021-01-19 10:13

For a responsive design, i would like to scale down some images:

img {
    width:100%;
    height:auto;
}

This works as expected, but if th

3条回答
  •  野性不改
    2021-01-19 11:09

    You could use max-width to prevent image width from becoming larger than original size.

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

提交回复
热议问题