这就是我的基本 html 页面的布局,我希望我的内容 div 在调整大小时相对于浏览器窗口大小移动,我在这个网站上查找了很多答案,但它们似乎都不起作用。任何帮助深表感谢。
<body>
<header>
</header>
<div id="container">
<div class="content">
xyz
</div>
</div>
<footer>
</footer>
</body>
CSS看起来像这样
#container {
position:relative;
height: 100%;
width:100%; /* Sizing - any length */
margin:0 auto 0 auto; /* Center content */
-moz-box-sizing:border-box;
-webkit-box-sizing:border-box;
-o-box-sizing:border-box;
-ms-box-sizing:border-box;
box-sizing:border-box;
}
footer {
width: 100%;
background: black;
position: fixed;
bottom: 0;
height: 60px;
}
header {
width: 100%;
background: black;
position: fixed;
bottom: 0;
height: 60px;
}