📜  html 使页脚粘在底部 - CSS 代码示例

📅  最后修改于: 2022-03-11 14:47:40.558000             🧑  作者: Mango

代码示例1
body{
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}
footer{
    margin-top: auto;
}