如果图片本身没有设置 width、height属性的话,只需要修改
max-100%;
就可以了
如果图片本身设置了 width、height属性的话,需要同时修改width 和height 两种属性,
我的解决办法如下
<style> img { max- 100% !important; height: auto !important; }</style>