我在让我的主要内容 div 伸展到全高时遇到问题,另一个容器能够伸展到全高。
http://westcountrycreamteas.co.uk/test.html
是我试图向下延伸的页面,而有问题的 div 是内部的。
我在让我的主要内容 div 伸展到全高时遇到问题,另一个容器能够伸展到全高。
http://westcountrycreamteas.co.uk/test.html
是我试图向下延伸的页面,而有问题的 div 是内部的。
消除
height: auto !important
从您的容器 div #outer。
应该解决问题。
你可以试试
#para {
margin-left: 10%;
height:999px;
overflow:hidden;
}
但我认为,内容区域应根据内容进行扩展。
我想你想要 max-height :
div{
height:100%;
}
您的外部 div 中有一个错误。您已使用百分比设置其高度,但只能使用 px 设置高度。你该怎么办:
height: 900px;