- From: Tobi Reif via GitHub <sysbot+gh@w3.org>
- Date: Wed, 11 Apr 2018 10:07:31 +0000
- To: public-css-archive@w3.org
tobireif has just created a new issue for https://github.com/w3c/csswg-drafts:
== [css-grid] Display any element as part of any given grid ==
I want to be able to display any element located anywhere in the HTML tree as part of any given grid (without changing the HTML / the DOM).
For example:
```
#foo {
display: grid;
}
#bar {
display-as-grid-item-of: "#foo";
/*
Where to place it in grid #foo :
*/
grid-row: 5;
grid-column: 3;
}
```
Please view or discuss this issue at https://github.com/w3c/csswg-drafts/issues/2530 using your GitHub account
Received on Wednesday, 11 April 2018 10:07:33 UTC