Am i missing a trick using CSS display:grid?
I have the following example - https://codepen.io/anon/pen/NyRVeO
We are trying to have a two column template using
grid-template-columns:1fr 3fr;
grid-gap:20px;
grid-template-areas:'title title'
'image map'
'address map'
'floorplan accessibility'
'facilities parking'
'teams bicycle'
'. meetingrooms'
'. evacuation';
Currently it has quite large white gaps under floor plans and also parking, due to the grid rows.
Is there a way to avoid this?
I know I could wrap all the items in the left in a sort of related div and then that would avoid the issue, but I am really trying to avoid that.
The page example will be generated by a CMS template and ideally we are trying to enable designers to move elements around the page using the CSS grid and not have to amend the HTML markup and template.
I am not sure what I want is possible but thought I would ask incase I'm missing a trick.
Thanks :)