1. 程式人生 > >【ie8bug】img設定max-width:100%,外層浮動,圖片消失

【ie8bug】img設定max-width:100%,外層浮動,圖片消失

<div class="con">

<img src="img/1.jpg" width="100" height="100" alt=""/></div><div class=con2> 內容</div>.con{float:left;}.con img{max-width:100%;height:auto;} --------- ie8下圖片消失。是由於浮動引起的bug。 網上查詢到的解決方案:
1).con設定寬度 2)img去掉max-width:100% 3)img寬高屬性去掉,或者width:auto 但是這個頁面要求自適應的,.con不能設定寬度,img的max-width:100%必須設定,且寬高屬性不能去掉。 最終的解決方案: .con{float:left;max-width:100%;
} .con img{width:auto\0;max-width:100%;height:auto;}