I'm working on my first site using CSS Grid.
I was wondering whether it is possible to use a CSS Grid Area several times in a layout.
Example:
+----------------------------------------+
| HEADER |
|----------------------------------------|
| NAV |
|----------------------------------------|
| SIDEBAR | CONTENT | SIDEBAR |
| | | |
| | | |
|----------------------------------------|
| FOOTER |
+----------------------------------------+
My grid element has the following CSS:
.grid{
display:grid;
grid-area-templates:
"header"
"nav"
"sidebar"
"content"
"sidebar"
"footer"
}
Is there any way to realise this, or do I have to get around it in some other way, than using pure CSS grid?