Re: [csswg-drafts] [css-contain] Scoping of the content property unclear.

Clarify what exactly is included in 'etc' and also add some example, e.g.

```html
<div><span></span></div>
```
```css
div {
  quotes: "«" "»" "<" ">";
}
div::before, span::before {
  content: open-quote;
}
div::after {
  content: close-quote;
}
span {
  contain: style;
}
```

If I understand properly, it should produce `««»`.

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

Received on Thursday, 29 March 2018 12:06:21 UTC