我有一张桌子,在 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;
}