<html>
<head>
<link rel="stylesheet" href="style.css" type="text/css" />
</head>
<body>
<img src="spacer--1200x800.png" width="1200" height="800" />
</body>
</html>
这是CSS代码
body {
background-image: url('b2.jpg');
background-repeat:no-repeat;
background-size:contain;
height: auto;
width: 100%;
margin:0px auto;
overflow:hidden;
}
请检查上面的代码。缩小网络浏览器时,图像正在正确调整大小,但我需要在调整图像大小的同时调整窗口高度。我不需要那个空白空间,所以如果调整宽度,我需要自动调整高度,就像那个图像一样。