css 圖片等比例縮放

來源:互聯網
上載者:User

/* for firefox & ie7 */

 代碼如下 複製代碼
* html .thumbimaged
{
/* for ie6 */
width: expression(this.width > 650 && this.width > this.height ?    "650px" :auto);
height: expression(this.height > 650 ?   "650px" :auto);
}

方法二

 

 代碼如下 複製代碼
* html .thumbimg {width: expression(this.width > 530 && this.width > this.height ? "530px" :auto); height:expression(this.height >530 ? "530px":auto);}/* for ie6 */


方法三

 代碼如下 複製代碼
width: expression(this.width >150 && this.width > this.height ? "150px" : "auto");
height: expression(this.height >48 ? "48px" : "auto");

 

 

相關文章

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.