CSS:有没有办法定义文档总高度?

时间:2013-03-28 18:50:04

标签: css height document

我想知道是否有任何方法可以使用CSS获取文档高度(而不是浏览器),因此您可以使用它来定义div元素的高度。

谢谢!

1 个答案:

答案 0 :(得分:0)

我会使用jQuery来解决这个问题,因为只有某些情况你可以使用高度here's a fiddle

来自小提琴的代码:

HTML:

<div id="wrapper">
    <div id="inner">

    </div>
</div>

jQuery的:

$(function() {
    var docHeight = $(document).height();
    $('#wrapper').height(docHeight);
});

的CSS:

#wrapper {
    background: rgba(0,0,0,0.2);
}
#inner {
    background: rgba(255,255,255,0.8);
    height: 50%;
}