css圖片自適應大小

來源:互聯網
上載者:User

複製代碼 代碼如下:function ReImgSize(){
for (j=0;j<document.images.length;j++)
{
document.images[j].width=(document.images[j].width>420)?"420":document.images[j].width;
}
}

然後在body地區加上onload="ReImgSize()" 就可以了。經過測試,在Mozilla和IE上通過.。在這裡補充一下關於圖片的自適應,這點Mozilla做的比IE好,因為可以用CSS來控製圖片的自適應。我們都知道Mozilla支援一個max-width 的CSS文法。於是我們這樣這樣定義圖片的全域樣式。 複製代碼 代碼如下:img{
max-width:100%;height:auto;
}

這樣圖片就回在div或table內自動適應其大小了.

相關文章

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.