Make grid items overlap
问题 I am trying to achieve a css grid pattern where the header is overlaying the next row. I have added a snippet of my code with the header on top, the attached image should show you what I am trying to achieve. Thanks body { display: grid; grid-template-areas: "header header header" "nav article ads" "footer footer footer"; grid-template-rows: 80px 1fr 70px; grid-template-columns: 20% 1fr 15%; grid-row-gap: 10px; grid-column-gap: 10px; height: 100vh; margin: 0; } /* Stack the layout on small