scss 粘滞页脚

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了scss 粘滞页脚相关的知识,希望对你有一定的参考价值。

<!--Sticky Footer by Flexbox-->
<body>
  <div class="content">
    content
  </div>
  <footer class="footer"></footer>
</body>

<!--Sticky Footer by Grid-->
<body>
  <div class="content">
    content
  </div>
  <footer class="footer"></footer>
</body>
// Sticky Footer by Flexbox
html, body {
  height: 100%;
}
body {
  display: flex;
  flex-direction: column;
}
.content {
  flex: 1 0 auto;
}
.footer {
  flex-shrink: 0;
}

// Sticky Footer by Grid
html {
  height: 100%;
}
body {
  min-height: 100%;
  display: grid;
  grid-template-rows: 1fr auto;
}
.footer {
  grid-row-start: 2;
  grid-row-end: 3;
}

以上是关于scss 粘滞页脚的主要内容,如果未能解决你的问题,请参考以下文章

下拉菜单打破粘滞页脚

为啥我的 Flexbox 粘滞页脚在 Safari 中不起作用?

带有 UIScrollView 的粘滞页脚

Flex Box 粘滞页脚内容溢出

当页脚位于其他 div 块内时出现粘滞页脚问题

带有透明背景的粘滞页脚