我有一个主体背景,并且该主体中有一个 div。在调整窗口大小时,我希望拥有这样的应用程序。为了保持宽度,如果我为正文提供固定宽度,则在调整窗口大小时我没有得到滚动条,因此不显示整页。如果我不提供固定宽度,页面对齐方式会发生变化,并且主体内的元素会在窗口调整大小时折叠。这是我的代码。提前致谢。
body.background
{
background: url(../images/common/header/Background_color.png);
background-repeat:repeat-x;
background-attachment:fixed;
background-position:top center;
height: 100%;
width: 100%;
border: 0;
background-size:contain;
position:fixed;
overflow:auto;
}
div.emptybody
{
height:100%;
width:97%;
background-color: rgb(255, 255, 255);
margin: 0px 25px 25px 25px;
height:470px;
background-position:center;
background-repeat:no-repeat;
background-attachment:fixed;
}
<body class="background">
<div class="emptybody">
-------------other elements and contents---------------
</div>
</body>