| 复制代码<title>(实用)div+CSS强制实现网站图片等比缩放兼容IE6/IE7/IE8</title>
<style>
img,a img{ 
border:0;  
margin:0;  
padding:0; 
max-width:200px; 
width:expression(this.width>200?"200px":this.width); 
max-height:200px; 
height:expression(this.height>200?"200px":this.height); 
</style>
<img src="https://www.discuz.1314study.com/images/logo/logo_top_001.png">
 |