我想根据屏幕的高度调整表格或div中的图像大小。
虽然我使用所有不同类型的代码来调整图像大小,但它总是获得某种绝对定位步进到表格或div之外,而不是随之拖动它们。
我的代码:
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>Test</title>
<style>
html, body, table { height:100%; width:auto; }
.stretch {
height:100%;
width:auto;
}
</style>
</head>
<body>
<table border="0" cellspacing="0" cellpadding="0">
<tr>
<td height="125px" bgcolor="#CCCCCC"> </td>
</tr>
<tr>
<td><img src="images/1.jpg" class="stretch" /></td>
</tr>
</table>
</body>
答案 0 :(得分:0)
您可以使用css3:
background:url("1.jpg");
background-size:100%;
完整的解释可以在这里找到: