css 页脚始终位于页面底部

Posted

tags:

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

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <meta http-equiv="X-UA-Compatible" content="ie=edge">
  <title>Document</title>
</head>
<body>
  <div class="wrapper">
    <header>Header</header>
    <div class="content">Content</div>
    <footer>Footer</footer>
  </div>
</body>
</html>
body,html {
  padding: 0;
  margin: 0;
}
.wrapper{
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100vh;
}

.content{
  background: yellow;
  flex: 1 1 100%
}

header{
  background: red;
}
footer{
  background: blue;
}

以上是关于css 页脚始终位于页面底部的主要内容,如果未能解决你的问题,请参考以下文章

Angular 中的响应式页脚,带有始终位于页面底部的引导程序。不粘

尝试使用 CSS 粘页脚时无法在移动设备中滚动

页脚始终位于底部但不固定

页面内容不够高footer始终位于页面的最底部

在 HTML 页面底部添加空格

html页脚 永远位于底部