我正在建立这个15页的网站,所以我真的想让我的主容器(浅灰色容器)高度灵活。
当我在主页上选择特定的像素高度(目前为止唯一的页面)时,一切都很棒但是当我将其更改为100%高度时,我的容器完全消失了。有什么我应该做的不同吗?
我的链接:
http://dariawdesign.com/acupuncture/StamfordAcupunctureHome.html
容器的CSS:
#maincontainer {
width: 1110px;
height: 3900px;
background-color: #E6E7E8;
margin-left: auto;
margin-right: auto;
margin-top: -16px;
}
答案 0 :(得分:2)
不要将高度设置为像素值,而是将其设为auto
。然后将overflow: hidden
添加到#maincontainer
样式中以展开容器以适合其浮动的子项。