- From: Florian Rivoal via GitHub <sysbot+gh@w3.org>
- Date: Thu, 03 Aug 2017 22:03:00 +0000
- To: public-css-archive@w3.org
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