19 lines
201 B
CSS
19 lines
201 B
CSS
html
|
|
{
|
|
min-height: 100vh;
|
|
}
|
|
body
|
|
{
|
|
display: grid;
|
|
grid-template-rows:auto 1fr auto;
|
|
min-height: 100vh;
|
|
}
|
|
header
|
|
{
|
|
background-color: black;
|
|
}
|
|
footer
|
|
{
|
|
background-color: black;
|
|
}
|