我环顾四周阅读解决方案并尝试了各种解决方案,但从未让它正常工作......
我希望图像最终根据浏览器窗口的当前高度动态调整大小。当前使用图像下方的代码是原始高度,最终比浏览器窗口大,导致出现垂直滚动条。
注意:请记住,我希望使用相同数量的表格和单元格来完成此操作。请不要给我一个单表解决方案。
<html>
<head>
<style>
body
{
text-align: center;
margin: 0px;
margin-left: auto;
margin-right: auto;
}
table.one
{
border-collapse: collapse;
}
table.two
{
border-collapse: collapse;
}
img
{
max-height: 100%;
}
</style>
</head>
<body>
<table class="one" cellpadding=0>
<tr>
<td>
<table class="two" cellpadding=0>
<tr>
<td>
<img src="myimage.jpg">
</td>
</tr>
</table>
</td>
</tr>
</table>
</body>
</html>