我的页脚出现在我的内容底部,直到我向下滚动然后再向上滚动,然后它出现在我的页面中间的内容中间。
我做了几个网页我觉得很有趣我刚刚遇到了这个问题,我使用了与其他项目类似的代码。
继承人是我的 HTML 和 CSS。
<body>
<div id="wrapper">
<header>
<nav>
</nav>
</header>
<div id="content">
</div>
</div>
<footer>
</footer>
</body>
CSS:
#body {
width: 100%;
background-color: #ebebeb;
margin: 0;
padding: 0;}
#nav{
margin:0;
padding:0px;
text-align:center;
width: 100%;
height: 44px;
position: fixed;
z-index: 15;
clear: both;}
#wrapper {
width: 100%;
min-height: 100%;
margin: 0;
padding: 0;
z-index: 10;
clear: both;
overflow: auto;}
#content-form {
width: 50%;
height: auto;
background-color: white;
margin-top: 100px;
margin-left: 25%;
margin-right: 25%;
margin-bottom: 0;
padding: 1em;
padding-bottom:0;
text-align: center;}
#footer {
width: 100%;
position: absolute;
bottom: 0;
left: 0;
clear: both;
background-color: #ffffff;
display: inline-block;
margin: auto;
padding: auto;
z-index: 5;}