手机Web 开发中图片img 如何等比例缩放

如果图片本身没有设置 width、height属性的话,只需要修改

  max-100%;

就可以了

如果图片本身设置了 width、height属性的话,需要同时修改width 和height 两种属性,

我的解决办法如下

<style>
  img {
    max- 100% !important;
    height: auto !important;
  }
</style>

原文地址:https://www.cnblogs.com/acm-bingzi/p/imgZoom.html