Document Structure
These are typical patterns of the top-level document structure.
$body-or-wrapper
scss
$body-or-wrapper: ":where(body, body > div:only-child)";
The body or an inevitable wrapper div.
#{$body-or-wrapper}
scss
#{$body-or-wrapper} {
min-block-size: 100vh;
> footer {
position: sticky;
inset-block-start: 100vh;
}
}
Apply “clever sticky footer” technique.