The default vertical-align
property for an img
element is baseline
.
Changing it to top
, middle
or bottom
fixes the issue.
jsFiddle example
td img {
vertical-align:top;
}
Alternatively, you can also add display:block
to the img
element.
jsFiddle example
td img {
display:block;
}
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…