- From: Daniel Tonon via GitHub <sysbot+gh@w3.org>
- Date: Wed, 02 Jan 2019 21:36:41 +0000
- To: public-css-archive@w3.org
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