The parser seems to not like when an area label comes before a css method like minmax.
grid-template-columns: [full-start] 1fr [content] minmax(100%, 1000px) 1fr [full-end];
The above is the example in my code. It is correct formatting for the new CSS Grid feature. Excluding it using ~" ... " causes the page to work. I just figured this shouldn't be necessary.
The parser seems to not like when an area label comes before a css method like minmax.
grid-template-columns: [full-start] 1fr [content] minmax(100%, 1000px) 1fr [full-end];The above is the example in my code. It is correct formatting for the new CSS Grid feature. Excluding it using
~" ... "causes the page to work. I just figured this shouldn't be necessary.