我正在尝试扩展我的左侧边栏,使其跨越页面(或容器 DIV)的长度。我尝试将容器的高度设置为 100%,然后将侧边栏的高度设置为 100%,但这不起作用。
这是我的编码:
div#container
{
overflow: hidden;
margin-left: auto;
margin-right: auto;
margin-top: 0px;
padding-bottom: 10px;
width: 880px;
height: 100%;
text-align: left;
}
div#left
{
float: left;
width: 280px;
height: 100%;
padding: 4px;
background: #F1D7A5;
}
这是页面的样子: http: //www.studentbridges.org/new/
任何关于如何扩展侧边栏的输入将不胜感激!
谢谢!
~诺艾尔