css图片在div中等比缩放

来源:互联网 发布:如何注册淘宝会员 编辑:程序博客网 时间:2024/05/16 19:03

 

<style type="text/css"> 

     .suofang {MARGIN: auto;WIDTH: 200px;} 

     .suofang img{MAX-WIDTH: 100%!important;HEIGHT: auto!important;width:expression(this.width > 200 ? "200px" :     this.width)!important;} 
 
</style> 
 
<body> 
     <div class="suofang"> 
         <img src="http://www.baidu.com/img/bdlogo.gif"/> 
     </div> 
</body>

 

 

     

原创粉丝点击