我想将我的页脚放在我的#wrapper的基线上,但我似乎能做的就是将页脚放在包装器下方。有人可以告诉我为什么会这样吗?
此外,如果有人发现我目前的设计方式存在问题并且有更好的方法,我会接受任何建议。
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html>
<head>
<title>sd</title>
<style type="text/css">
html, body {
width:100%;
background:brown;
border:0px solid red;
margin:0;
padding:0;
}
#wrapper {
width:1220px;
height:750px;
padding:0;
margin:0 auto;
background:#ccc;
border:3px solid white;
}
#header {
background-color:#aaa;
width:100%;
height:100px;
padding:0;
margin:0 auto 0 auto;
border:0px solid;
}
#content {
float:left;
width:100%;
height:649px;
padding:0;
margin:0;
border:0px solid;
}
#cell-left {
background-color:#bbb;
float:left;
width:200px;
height:100%;
padding:0;
margin:0;
border:0px solid;
}
#cell-right {
float:right;
width:1010px;
height:100%;
padding:0;
margin:0;
border:0px solid;
}
#footer {
float:left;
width:100%;
height:25px;
padding:4px;
margin:0;
text-align:center;
border:1px solid;
}
</style>
</head>
<body>
<div id="wrapper">
<div id="header"></div>
<div id="content">
<div id="cell-left">dsssd</div>
<div id="cell-right">dsssd</div>
</div>
<div id="footer">sdsd</div>
</div>
</body>
</html>
答案 0 :(得分:2)
您应该正确移除#wrapper
(height:750px
)和#wrapper
内clear the floated elements的固定高度。
最简单的方法是将overflow: hidden
添加到#wrapper
。
改变的CSS:
#wrapper {
overflow:hidden;
width:1220px;
padding:0;
margin:0 auto;
background:#ccc;
border:3px solid white;
}
答案 1 :(得分:0)
您已经提到了显示问题的包装高度750.只需清楚显示并给出height:auto
你已经给出了
header: `height:100px;`
content: height:649px;
所以它占用了近750px。所以没有足够的空间。所以它正好在包装器下面。所以试着给高度:自动。