内容不足时,页脚固定在页面底部
HTML
1 | <body> |
CSS1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22body{
display: flex;
min-height: 100vh;
flex-direction: column;
}
header{
line-height: 100px;
text-align: center;
color: #ffff;
background: #333;
}
main{
flex: 1;
text-align: center;
}
footer{
line-height: 100px;
text-align: center;
color: #ffff;
background: #333;
}
预览