我找到了一种放置我喜欢的页脚的方法,除了当页面调整大小时页脚与内容重叠的事实。
使用我已经拥有的结构和格式,如何“清除”页脚,以便在页面调整大小时它会下降(避免重叠#content
)?
我已经尝试过clear: left
了,但这对此无济于事。
本质上,只要空间允许,我希望页脚始终可见,并附加到窗口的左下方;但是,当窗口变小时,我不希望页脚与我的内容重叠。
CSS:
* {
margin: 0;
padding: 0;
}
html {
height: 100%;
}
body {
background-size: cover;
margin: 0;
height: 100%;
}
#wrapper {
min-height: 100%;
height: 100%;
min-width: 900px;
overflow: hidden;
}
.main_nav {
margin: 0;
width: 160px;
float: left;
padding-left: 40px;
overflow: hidden;
}
#content {
float: left;
width: 750px;
height: 600px;
}
#footer {
position: absolute;
bottom: 0px;
width: 100%;
height: 50px;
}
HTML:
<body>
<div id="wrapper">
<div id="header">
<h1></h1>
<ul class="main_nav">
<li></li>
</ul>
</div>
<div id="content">
</div>
</div>
<div id="footer">
<div id="footer_content"></div>
</div>
</body>