Re: [csswg-drafts] [css-grid] Introducing overlapping cells in grid-template-areas syntax (#2808)

For the sake of completeness, this would be the short-hand syntax:

```css
.grid {
  display: grid;
  grid-template:
    "a   a   ." 1fr
    "a [a b] b" 1fr
    "a   a   ." 1fr /
     1fr 1fr 1fr;
}
.cell-a {
  grid-area: a;
}
.cell-b {
  grid-area: b;
}
```

-- 
GitHub Notification of comment by Dan503
Please view or discuss this issue at https://github.com/w3c/csswg-drafts/issues/2808#issuecomment-450992779 using your GitHub account

Received on Wednesday, 2 January 2019 21:36:42 UTC