Scale image with CSS but limit to orignial size

前端 未结 3 1005
时光取名叫无心
时光取名叫无心 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 10:56

    Not answering for the scale bug for image size limit this could work:

    img {
      max-height: max-content;
    }
    

提交回复
热议问题