I use css grid-template-areas, like this:
grid-template-areas:
'sidebar tags'
'sidebar categories';
It's working fine but I would like to add an empty element, kind of like this:
grid-template-areas:
'EMPTY sidebar tags EMPTY'
'EMPTY sidebar categories EMPTY';
Is that possible? I know I can add an empty html element for it but I know that css grid in most cases are really smart when it comes to controlling things with css only.