0
0

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 1 year has passed since last update.

【HTML/CSS】ホームページ著作権マークをサイト下部に固定する

Last updated at Posted at 2022-10-03

概要

Footerタグを利用して中間の要素がスカスカでも常の画面の最下部にFooterが表示されるようにする方法

もし中間の要素がたくさんあった場合はページの最下部Footerが表示されるようにする

#header {
  background-color: black;
  color: white;
  height: 7vh;
  display: flex;
  align-items: center;

#main {
  min-height: 88vh;
  display: flex;
  flex-wrap: wrap;
}

#footer {
  background-color: #ccc;
  color: #333;
  height: 5vh;
  text-align: center;
}

ポイント

vh (viewport height)
ビューポートの高さに対する割合を使用する

上記CSSでは
header 7vh (7%)
main 88vh(88%)
footer 5vh (5%)
と設定して全体の表示の割合を100%にしている
なお中途半端な数値になっているのはバランスを取るため

ちなみにmainで使用している
min-heightは領域内における最小値を指定するプロパティでmainで最低でも88%画面を使用すると指定している

0
0
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
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?