2016-11-17 68 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

对,就是这样,谢谢 –