通常通过jq来做,类似这样:
$(‘#navigation‘).css({ height: $(window).innerHeight() });
css3后,只需要用 下面这段样式即可
#navigation { height:100vh; }
更多详细资料参考:http://stackoverflow.com/questions/1575141/make-div-100-height-of-browser-window
时间: 2024-10-18 01:52:32
通常通过jq来做,类似这样:
$(‘#navigation‘).css({ height: $(window).innerHeight() });
css3后,只需要用 下面这段样式即可
#navigation { height:100vh; }
更多详细资料参考:http://stackoverflow.com/questions/1575141/make-div-100-height-of-browser-window