我有一张桌子,在td标签里面有一个gif图片:
<table id="wrapper">
<tr>
<td><img src="as.gif" width="auto" height="100%"></td>
</tr>
</table>
我尝试了成千上万的东西来使gif 100%的视口,但不知何故它不会起作用!这是我的CSS:
html, body, #wrapper {
height:100%; width: 100%; margin: 0; padding: 0; border: 0;
}
table {height:100%}
td {height:100%}
tr {height:100%}
#wrapper td {
text-align: center;
}
答案 0 :(得分:0)
你试过吗
table tr td img { height : 100% }