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;
}