0
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

CSS3の「flexbox」でフッターをページ最下部に固定して浮くのを防ぐ

Posted at

コンテンツの縦幅が狭い際、フッターが画面最下部から浮いてしまいますが、flexboxを使って最下部に固定する方法を見つけたのでメモします。

hmtl
<body>
  <div id="wrapper">
    <main>メインコンテンツが入ります。</main>
  <footer>フッターが入ります。</footer>
  </div>
</body>
css
body,#wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
 
footer {
  margin-top: auto;
}
0
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?