Re: [csswg-drafts] [css-ui]Spec for cursor during selection?

You can do it with
```css
:any-link {
  cursor: pointer;
}
```
or, if you are in a browser that does not support `:any-link`, with:
```css
:link, :visited {
  cursor: pointer;
}
```

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

Received on Thursday, 3 August 2017 22:03:01 UTC