I am trying to set up grid-template-areas. I have input this is the parent div: grid-template-areas: h h h h h h h h h h h h, m c c c c c c c c c c c, f f f f f f f f f f f f I have input this in the child div: header div = grid-area: h menu div = grid-area: m content div = grid-area: c footer div = grid-area: f But I haven't managed to get it to work. I have also tried enclosed the child divs in double-quotations, single-quotations, etc. Is it possible to achieve this using the CSS editor?
Lucas G
13 days ago
Jan 26, 2025, 7:05 PM
grid-template-areas: "h h h h h h h h h h h h" "m c c c c c c c c c c c" "f f f f f f f f f f f f"
no commas
Raphael Walters
13 days ago
Jan 26, 2025, 7:29 PM
Amazing @Lucas G Thank you! The one thing I didn't think to try π€¦ββοΈπ