- From: Daniel Tonon via GitHub <sysbot+gh@w3.org>
- Date: Thu, 17 Oct 2019 13:26:54 +0000
- To: public-css-archive@w3.org
> Ah, so if the subgrid fully overlaps a parent's grid area, the subgrid's children still don't see those lines? I think that is unintuitive and not particularly useful. The way I imagine it working is that the sub-grid kind of crops the parent grid areas. ```css .parent-grid { display: grid; grid-template-columns: repeat(4, 1fr); grud-template-areas: "a a a a"; } .sub-grid { display: grid; grid-template-columns: subgrid; grid-column: 2 / 4; } .sub-grid-cell { grid-area: a; } ``` ``` Parent grid: |a-start | | | a-end | Sub grid: | |a-start | a-end| | ``` -- GitHub Notification of comment by Dan503 Please view or discuss this issue at https://github.com/w3c/csswg-drafts/issues/4411#issuecomment-543174237 using your GitHub account
Received on Thursday, 17 October 2019 13:26:56 UTC