答案 0 :(得分:1)
除非您有多个表格和多个图片用于不同的数据布局,否则您可以为table
或td
img
定义相同的样式,这应该适用于{{1} }以及Chrome
和IE
。
小提琴上的示例http://jsfiddle.net/2BdQT/
或
css :
Firefox
<强> HTML 强>:
table, img
{
height:40px;
width:40px;
}
td,tr,tbody
{
width:100%;
height:100%;
}
答案 1 :(得分:0)
您需要设置td
table
的样式,而不是img
标记
<强> jsFiddle 强>
答案 2 :(得分:0)
这是您可以做的最好的事:http://jsfiddle.net/CgEhg/41/
<table border="0" cellspacing="0" cellpadding="0">
<tr>
<td><img src="http://www.google.com/logos/2012/stgeorge12-hp.png" /></td>
</tr>
</table>
table{
height:40px;
width:40px;
}
img{
height:auto;
width:100%;
}
td,tr,tbody{
height:100%;
height:100%;
}