sticker footer

sticker footer: 让某些部件固定在页面的底部,内容不足显示,内容过多滚动底部

html:

  <div id="sticker">
    <div id="stickerCon"></div>
  </div>
  <div id="footer">footer</div>

css:

  body{overflow: auto}

  #sticker{height: 100%;min-height: 100%}

  #stickerCon{padding-bottom: 40px}  // 高度自定

  #footer{margin-top: -40px}

  

posted @ 2017-07-08 23:56  Easty  阅读(81)  评论(0)    收藏  举报