解析DIV CSS实例:让页脚保持在未满屏页面底部
这里和大家分享一下DIV CSS实例:如何让页脚保持在未满屏页面的底部,在DIV CSS布局过程中内容不超过一屏的情况下,当浏览器窗口变小那行页脚文字会跟着向上浮动但还是保持在底部。
DIV CSS实例:让页脚保持在未满屏页面的底部
在DIV CSS布局过程中内容不超过一屏的情况下,当浏览器窗口变小那行页脚文字会跟着向上浮动但还是保持在底部。
当内容多出一屏时,他显示在网页的最下边,而不是窗口的最下边;测试了一下,还可以,在IE6、IE7、FF等都没有问题!窗口缩小时也没有问题!下面看一下DIV CSS实例代码。
首先是JS脚本:
ExampleSourceCode
functiontest(){ varinfoHeight=document.getElementById("info").scrollHeight; varbottomHeight=document.getElementById("bottom").scrollHeight; varallHeight=document.documentElement.clientHeight; varbottom=document.getElementById("bottom"); if((infoHeight+bottomHeight)<allHeight){ bottom.style.position="absolute"; bottom.style.bottom="0"; }else{ bottom.style.position=""; bottom.style.bottom=""; } setTimeout(function(){test();},10); } test();
查看一下DIV CSS实例的运行效果:
SourceCodetoRun
相关推荐
qiupu 2020-11-04
多读书读好书 2020-11-03
RedCode 2020-10-28
jiedinghui 2020-10-25
Ladyseven 2020-10-22
hellowzm 2020-10-12
zuncle 2020-09-28
Ladyseven 2020-09-11
jiedinghui 2020-09-07
xiaohuli 2020-09-02
葉無聞 2020-09-01
impress 2020-08-26
ThikHome 2020-08-24
nicepainkiller 2020-08-20
hellowzm 2020-08-18