内容较少时,页面的footer始终显示在底部,不是使用fixed。_html/css_WEB-ITnose

php中文网
发布: 2016-06-21 09:19:10
原创
1457人浏览过

一、使用css,参考国外的一个解决方法:

http://ryanfait.com/resources/footer-stick-to-bottom-of-page/

How to use the CSS Sticky Footer on your website

Add the following lines of CSS to your stylesheet. The negative value for the margin in .wrapper is the same number as the height of .footer and .push. The negative margin should always equal to the full height of the footer (including any padding or borders you may add).

* {

margin: 0;

}

立即学习前端免费学习笔记(深入)”;

html, body {

height: 100%;

}

立即学习前端免费学习笔记(深入)”;

.wrapper {

min-height: 100%;

height: auto !important;

height: 100%;

margin: 0 auto -4em;

}

立即学习前端免费学习笔记(深入)”;

.footer, .push {

height: 4em;

}

立即学习前端免费学习笔记(深入)”;

Follow this HTML structure. No content can be outside of the .wrapper and .footer div tags unless it is absolutely positioned with CSS. There should also be no content inside the .push div as it is a hidden element that "pushes" down the footer so it doesn't overlap anything.

    

        

    

    

        

            

Your website content here.

            

        

        

    

二、使用js,参考这个:(本人未验证过,看代码应该可行)

http://jingyan.baidu.com/article/2fb0ba4054805900f2ec5f9d.html

  //footer吸底效果    var _ch = $("#content").height();//这个就是你中间内容div的高度    var _wh = $(window).height();//整个窗口的高度    //console.log("window's height",_wh,"content's height",_ch,"_wh - _ch:",_wh - _ch);    if(_wh - _ch > 192){        $("#content").css("min-height",(_wh-192)+"px");    }    //希望这段代码对你有用!
登录后复制


HTML速学教程(入门课程)
HTML速学教程(入门课程)

HTML怎么学习?HTML怎么入门?HTML在哪学?HTML怎么学才快?不用担心,这里为大家提供了HTML速学教程(入门课程),有需要的小伙伴保存下载就能学习啦!

下载
来源:php中文网
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
最新问题
开源免费商场系统广告
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板
关于我们 免责申明 意见反馈 讲师合作 广告合作 最新更新
php中文网:公益在线php培训,帮助PHP学习者快速成长!
关注服务号 技术交流群
PHP中文网订阅号
每天精选资源文章推送
PHP中文网APP
随时随地碎片化学习
PHP中文网抖音号
发现有趣的

Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号