Files
CS343-Labs/Prep 6/holy-grail.css

35 lines
397 B
CSS
Raw Normal View History

2025-09-10 14:42:57 -04:00
body {
display: flex;
flex-direction: column;
min-height: 100vh;
margin: 0;
}
header,
footer {
background-color: sandybrown;
}
.middler {
display: flex;
flex-direction: row;
flex-grow: 1;
}
aside {
flex-basis: 150px;
background-color: cornsilk;
}
main {
flex-grow: 1;
flex-basis: 0;
}
main,
aside,
header,
footer {
padding: 10px;
}