2012-09-24 104 views

回答

4

添加垂直對齊:頂你的IMG規則:

img { 
    max-width: 100%; 
    height: auto; 
    width: auto; 
    vertical-align:top; 
} 
​ 

jsFiddle example

+1

你是最棒的!謝謝。 – user1040259

+0

在我的情況下,vertical-align:top;效果最好。 – user1040259

4

display:block;到圖像解決它

img { 
    display:block; 
    max-width: 100%; 
    height: auto; 
    width: auto; 
} 

jsFiddle example