Code: Select all
body {
margin: 0;
}
article {
display: flex;
flex-direction: column;
position: relative;
min-height: 100vh;
break-after: page;
}
section,
footer {
flex-shrink: 0;
border-radius: 1rem;
break-inside: avoid;
}
section {
height: 30vh;
margin-bottom: 1rem;
border: 3px solid gray;
}
footer {
margin-top: auto;
height: 10rem;
border-radius: 1rem;
break-inside: avoid;
border: 3px dashed gray;
}
< /code>