Maison > Article > interface Web > html页面高度自适应_html/css_WEB-ITnose
本文实现的效果是根据浏览器分辨率的不同,页面底端背景色自适应浏览器高度,也就是可以自动填充背景色。
function height_adaptive(){
var main=$(document).height();
var title=document.getElementById("login_title").scrollHeight;
var body=document.getElementById("login_body").scrollHeight;
var bottom=main-title-body;
$("#login_bottom").height(bottom);
}
版权声明:本文为博主原创文章,未经博主允许不得转载。