2016-11-17 36 views

回答

2

我想,你的問題是由/ * MAX圖像寬度* /樣式定義造成

/* MAX IMAGE WIDTH */ 

img { 
    height:auto !important; 
    max-width:100% !important; 
    -webkit-box-sizing: border-box !important; /* Safari/Chrome, other WebKit */ 
    -moz-box-sizing: border-box !important; /* Firefox, other Gecko */ 
    box-sizing: border-box !important;   /* Opera/IE 8+ */ 
} 

max-width:100% !important;   

導致該問題。如果刪除該行或至少!important子句,則該映射將起作用。 (我曾嘗試過使用Chrome)

+0

對,就是這樣,謝謝 –