如果圖片本身沒有設置 width、height屬性的話,只需要修改
max-width:100%;
就可以了
如果圖片本身設置了 width、height屬性的話,需要同時修改width 和height 兩種屬性,
我的解決辦法如下
<style>
img {
max-width: 100% !important;
height: auto !important;
}
</style>
如果圖片本身沒有設置 width、height屬性的話,只需要修改
max-width:100%;
就可以了
如果圖片本身設置了 width、height屬性的話,需要同時修改width 和height 兩種屬性,
我的解決辦法如下
<style>
img {
max-width: 100% !important;
height: auto !important;
}
</style>
本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。