Skip to content

Instantly share code, notes, and snippets.

@lydell
Created October 5, 2015 07:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lydell/cdbd36303b53a787a065 to your computer and use it in GitHub Desktop.
Save lydell/cdbd36303b53a787a065 to your computer and use it in GitHub Desktop.
<!doctype html>
<title>test</title>
<style>
a:hover::after {
content: ':hover';
}
a:focus::after {
content: ':focus';
}
a:active::after {
content: ':active';
}
a:hover:focus::after {
content: ':hover:focus';
}
a:hover:active::after {
content: ':hover:active';
}
a:focus:active::after {
content: ':focus:active';
}
a:hover:focus:active::after {
content: ':hover:focus:active';
}
</style>
<p><a href="https://duckduckgo.com/">External Link</a></p>
<p><a href="tmp.html">Internal Link</a></p>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment