好得很程序员自学网

<tfoot draggable='sEl'></tfoot>

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


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

查看更多关于html页面高度自适应_html/css_WEB-ITnose的详细内容...

  阅读:32次