Re: [csswg-drafts] [css-selectors] Reference selectors (#3714)

```css
 $foo { color: blue; }
 $foo { color: red; }
```

this would throw an error. you can't define multiple references with the same name in a module. 

@bkardell's example would be rewritten as 
```css
$foo { 
  color: yellow; 
  @media only screen and (max-width: 480px) {
    & {
      background-color: black;
    }
  }
}
```

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

Received on Tuesday, 19 March 2019 10:59:14 UTC