Grid Alternative To Position Absolute
CSSCode Snippets
How to use grid to layer sections on top of each other instead of using "position: absolute".
.menu-icons {
display: grid;
grid-template: 1fr / 1fr;
> * {
grid-column: 1;
grid-row: 1;
}
}