每个div全浏览器大小

时间:2013-09-25 22:42:10

标签: html css

好吧,我有点卡在这一点上,似乎无法搞清楚!

因此,当我们提供产品的规格时,我正在寻找Apple使用的类似解决方案。

我想要实现的是你有两个div,每个div占用浏览器的全部空间!

所以你会有

< - DIV1 - > 这是完整的浏览器宽度和高度,这里没有设置100%的问题 < - DIV - >

然后第二个div整洁

< - DIV2 - > 用户已经使用了它的滚轮,并且被突出显示到这个div,这也是浏览器的全尺寸!这有多可行? < - DIV - >

希望这是有道理的:)

我被要求提供一些代码:

所以我猜HTML是:

<div id="contentOne">
   Just some content
</div>

<div id="contentTWO">
   Just some other content
</div>

然后是CSS

html {
min-height:100%
}

body {
height:100%

#ContentOne {
min-height:100%;
}

#ContentTwo {
min-height:100%; !--well this doesn't work--!
}

希望现在有意义了!

0 个答案:

没有答案