0

我在让我的主要内容 div 伸展到全高时遇到问题,另一个容器能够伸展到全高。

http://westcountrycreamteas.co.uk/test.html

是我试图向下延伸的页面,而有问题的 div 是内部的。

4

4 回答 4

2

消除

height: auto !important

从您的容器 div #outer。

应该解决问题。

于 2012-06-24T22:39:22.933 回答
0

你可以试试

#para {
    margin-left: 10%;
    height:999px;
    overflow:hidden;
}

但我认为,内容区域应根据内容进行扩展。

小提琴http://jsfiddle.net/CPfyL/

于 2012-06-24T22:35:14.137 回答
0

我想你想要 max-height :

div{
   height:100%;
}
于 2012-06-24T22:36:13.043 回答
0

您的外部 div 中有一个错误。您已使用百分比设置其高度,但只能使用 px 设置高度。你该怎么办:

  • 将外部 div 高度设置为所需的量,例如:height: 900px;
  • 将您正在谈论的 div 的高度设置为与外部的高度相同。
于 2012-06-24T22:40:08.177 回答