<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=gb2312" /> <title>純CSS實現圖片等比縮放兼容IE6/IE7/火狐/谷歌_懶人建站</title> <style type="text/css"> .suofang {MARGIN: auto;WIDTH: 200px;float:left;} .suofang img{MAX-WIDTH: 100%!important;HEIGHT: auto!important;width:expression(this.width > 200 ? "200px" : this.width)!important;} </style> </head> <body> <div class="suofang"> <img src="123.jpg"/> </div> <img src="123.jpg"/> </body> </html>