美文网首页
CSS Sticky Footer

CSS Sticky Footer

作者: 被遗忘的传说 | 来源:发表于2017-02-12 22:27 被阅读0次

HTML

<div id="wrap">
    <div id="main" class="clearfix">
        <div id="content">
        </div>
        <div id="side">
        </div>
    </div>
</div>
<div id="footer">
</div>

CSS

.clearfix:after {content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;}
.clearfix {display: inline-block;}
/* Hides from IE-mac \*/
* html .clearfix { height: 1%;}
.clearfix {display: block;}
/* End hide from IE-mac */
html, body, #wrap {height: 100%;}
body > #wrap {height: auto; min-height: 100%;}
#main {padding-bottom: 150px;}  /* 必须使用和footer相同的高度 */
#footer {position: relative;
    margin-top: -150px; /* footer高度的负值 */
    height: 150px;
    clear:both;}

相关文章

  • CSS Sticky Footer

    HTML CSS

  • CSS五种方式实现Footer置底

    https://css-tricks.com/couple-takes-sticky-footer/页脚置底(St...

  • css实现Sticky Footer

    所谓 “Sticky Footer”,指的就是一种网页效果: 如果页面内容不足够长时,页脚固定在浏览器窗口的底部;...

  • css-sticky footer

    如何将页脚固定在页面底部? 要求: 如果页面内容不够长的时候,页脚块粘贴在视窗底部; 如果页面长度超出视窗时,页脚...

  • css sticky footer经典布局

    什么是sticky footer布局?一般指手机页面中,当内容高度撑不满一屏时,页脚紧贴屏幕底部;当内容高度超过一...

  • web前端-Sticky Footer布局

    什么是Sticky Footer布局 Sticky Footer布局实现的效果是, 当页面中的内容高度小于屏幕高度...

  • sticky footer

    所谓的sticky footer就是指: 当页面内容超出屏幕,页脚模块会像正常页面一样,被推到内容下方,需要拖动滚...

  • sticky footer

    需求 如果页面内容不够长的时候,页脚块粘贴在视窗底部;如果内容足够长时,页脚块会被内容向下推送 实现

  • sticky footer

    一种完美的css绝对底部 手机端网页有时候会遇到这种布局要求:当内容很少时,footer位于窗口底部,当内容占满整...

  • sticky-footer布局的方法

    一、什么是sticky-footer布局?sticky-footer布局是一种经典的布局效果,可概况如下:如果页面...

网友评论

      本文标题:CSS Sticky Footer

      本文链接:https://www.haomeiwen.com/subject/mzfzittx.html