Created
August 18, 2011 00:06
-
-
Save paularmstrong/1152976 to your computer and use it in GitHub Desktop.
Use CSS3 to Display Link Targets
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
a[href^=http]:hover:after, | |
a[href^=http]:link:hover:after { | |
margin: 0 0 0 5px; | |
padding: 0 0.2em; | |
content: '(' attr(href) ')'; | |
font-size: 0.8em; | |
position: absolute; | |
background: #C6CFEB; | |
color: #3A57AB; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment