欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  web前端

html页面高度自适应_html/css_WEB-ITnose

程序员文章站 2022-03-16 18:45:29
...
本文实现的效果是根据浏览器分辨率的不同,页面底端背景色自适应浏览器高度,也就是可以自动填充背景色。

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);
}





版权声明:本文为博主原创文章,未经博主允许不得转载。