Re: [csswg-drafts] [css-pseudo-4] new generated content pseudo :between/:separator

I misread the question, my code nerds a small adjustment:

```css
ul.recycler > * {
  & {
    display: contents;
  }
  &::contents {
    display: block;
  }
  & + ::before {
    content: "";
    /* ... */
  }
}
```

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

Received on Tuesday, 31 July 2018 17:48:32 UTC