html 粘滞页脚
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了html 粘滞页脚相关的知识,希望对你有一定的参考价值。
// 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;
}
<!--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>
以上是关于html 粘滞页脚的主要内容,如果未能解决你的问题,请参考以下文章
html 粘滞页脚
html 粘滞页脚
html 粘滞的页脚标记。
HTML 粘滞页脚
HTML/CSS 中的粘滞页脚,显示问题
部分不适用于 CSS 粘滞页脚