我有一个名为“主容器”的 div,我想成为我内容的高度。目前,该 div 仅与我的浏览器窗口一样高。我试图像这样纠正这个:
html, body{
height: 100%;
background-color: $main-background-color;
}
#main-container {
width: 1024px;
height: 100%;
background-color: darken($main-background-color, 5%);
}
不幸的是,这不起作用。我也试过:
#main-container {
width: 1024px;
min-height: 100%;
height:auto !important;
background-color: darken($main-background-color, 5%);
}
这也没有效果。我还重新设计了我的布局,不使用浮动,但这并没有解决问题。在网上搜索后,我没有找到任何其他有效的解决方案。还有其他人有想法吗?
另外,我不知道这是否会影响事情,但我正在使用 Rails 3。