發(fā)表日期:2015-12-16 文章編輯:南昌開(kāi)優(yōu)網(wǎng)絡(luò) 瀏覽次數(shù):4433 標(biāo)簽:CSS應(yīng)用
<!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的防止圖片撐破頁(yè)面的代碼(圖片自動(dòng)縮放)</title> <style type="text/css"> .content-width {MARGIN: auto;WIDTH: 600px;} .content-width img{MAX-WIDTH: 100%!important;HEIGHT: auto!important;width:expression(this.width > 600 ? "600px" : this.width)!important;} </style> </head> <body> <div class="content-width"> <p><img src="/down/js/images/12567247980.jpg"/></p> <p><img src="/down/js/images/12567247981.jpg"/></p> </div> </body> </html>