0

我的页面只包含标题和内容。标题大约是 90 像素,我所有的内容都放在一个 DIV 中。有没有办法改变 DIV 的高度以匹配我的视口高度?

4

1 回答 1

2

尝试这个

$("#id_of_content_div").height($(window).height()-$("#header").height());

$(window).height() 是视口高度

在调整视口大小时调整内容高度,使用

$(window).resize(function(){
    $("#id_of_content_div").height($(window).height()-$("#header").height());
});
于 2012-05-12T11:29:30.750 回答