我正在尝试将背景图像设置为整个 html 页面,但每次都失败。它没有拉伸。这是我的 css 和 html 代码:
CSS代码:
body {
background-image:url(body_background.png);
background-repeat: no-repeat;
background-size: 100% 100%;
width:1200px;
margin:0 auto;
}
#main_container_div {
padding: 0px;
width: 1000px;
margin-top: 30px;
margin-left: 150px;
}
#div2 {
float: left;
width: 250px;
height: 600px;
margin-top: 0px;
margin-right: 0px;
background-repeat: no-repeat;
}
#div3 {
position: relative;
float: left;
width: 750px;
height: 500px;
margin-top: 50px;
overflow: hidden;
}
html正文:
<body>
<div id="main_container_div">
<div id="div3">
</div>
<div id="div2">
</div>
</div>
</body>
您可以尝试使用 1366x768 大小的图像。我也在 1366x768 分辨率上尝试这个。请注意,这个问题在这个或更高的分辨率上是可见的。谢谢你的帮助..