响应式页面如何调整图片,防止小图片被拉大

七海恋空 2019-04-26 浏览(0 评论(0

max-width:100%;可以让小图片不自动填充整个div

<style>
/*20170904响应式图片*/
.TRS_Editor p{width:100%;}
.public_con_text_box .public_con_text img{max-width:100%;}
.TRS_Editor div{width:100%;}
</style>
<script>
//*20170904响应式图片*/
$(document).ready(function(){
$(".TRS_Editor").find("img").removeAttr("width");
$(".TRS_Editor").find("img").removeAttr("height");
})
</script>