0

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

1 回答 1

0

你有没有尝试过

table tr td img { height : 100% }
于 2013-04-03T18:05:49.610 回答