我有一个非常简单的布局,看起来像这样
的代码是这样的:
<!DOCTYPE html>
<html>
<HEAD>
<LINK href="mystyle.css" title="compact" rel="stylesheet" type="text/css">
</HEAD>
<body>
<div id="wrap">
<div id="header">
<p> Im the header. </p>
</div>
<div id="nav">
<p> Im the nav. </p>
</div>
<div id="sidebar">
<p> sidebar here </p>
<p> sidebar here </p>
<p> sidebar here </p>
<p> sidebar here </p>
<p> sidebar here </p>
<p> sidebar here </p>
<p> sidebar here </p>
<p> sidebar here </p>
<p> sidebar here </p>
</div>
<div id="main">
<p> im the main </p>
<p> im the main </p>
<p> im the main </p>
<p> im the main </p>
<p> im the main </p>
<p> im the main </p>
<p> im the main </p>
<p> im the main </p>
<p> im the main </p>
<p> im the main </p>
<p> im the main </p>
<p> im the main </p>
</div>
<div id="footer">
<p> footer </p>
</div>
</div>
<body>
</html>
这是CSS:
#wrap
{
width: 100%;
background-color:blue;
padding: 10px;
}
#header
{
background-color:white;
width: 98%;
float: left;
padding: 10px;
}
#nav
{
background-color:yellow;
padding: 10px;
width:100%;
}
#main
{
width:100%;
background:green;
padding: 10px;
}
#sidebar
{
background-color:pink;
float:right;
float:top;
padding: 10px;
width:20%;
height:100%;
}
#footer
{
background-color:orange;
padding: 10px;
width:100%;
clear:both;
}
现在我只是不知道为什么我不能让粉红色是/侧边栏垂直填充所有空间,一直到橙色页脚?