- From: Ádám Liszkai via GitHub <sysbot+gh@w3.org>
- Date: Sat, 12 Nov 2016 10:27:51 +0000
- To: public-houdini-archive@w3.org
adamos42 has just created a new issue for
https://github.com/w3c/css-houdini-drafts:
== Nested CSS Selectors will be implemented? ==
I know the CSS selectors nesting is not the way how the CSS does, but
in multiple CSS extension you are able to do it and programmers love
it. I want to know that it will be in the platform in the future?
Current CSS:
```
body {
margin: 0; padding: 0;
}
body > main {
width: 900px; margin: 0 auto;
}
body > main > h1 {
color: HoneyDew;
}
body > main > p {
color: #222; margin: 0; padding: 0 0 8px 0;
}
```
Expected CSS:
```
body {
margin: 0; padding: 0;
main {
width: 900px; margin: 0 auto;
h1 {
color: HoneyDew;
}
p {
color: #222; margin: 0; padding: 0 0 8px 0;
}
}
}
```
Please view or discuss this issue at
https://github.com/w3c/css-houdini-drafts/issues/333 using your GitHub
account
Received on Saturday, 12 November 2016 10:27:57 UTC