IE8 max-width CSS圖像變形的解決方法

7 月 8, 2015 | | 0 條留言

IE8在css使用max-width時會有如下圖失真的情形發生。
 

css只需要簡單的將後面加入width:auto; height:auto; 就可解決。
{googleads center}
img{
  max-width:680px;
  width:auto;
  height:auto;
}