ヘッダー・フッターを固定する

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<div class="container100">
 
<div class="header100">
header:100px
</div>
 
<div class="contents100">
<p>
文章
</p>
</div>
 
<div class="footer100">
footer:150px
</div>
</div>
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
.container100{
min-height: 100vh;
display: flex;
flex-direction: column;
}
 
.header100{
height: 100px;
text-align:center;
color:#ffffff;
background:#000000;
}
 
.contents100{
flex: 1;
max-width:800px;
margin:0 auto;
padding:10px;
}
 
.footer100{
height: 150px;
text-align:center;
color:#ffffff;
background:#000000;
}

勉強させてもらったサイト

コメントを残す

メールアドレスが公開されることはありません。 が付いている欄は必須項目です