Created
March 18, 2018 17:46
-
-
Save blueridgemountains1/ba26bad60c3950316ebee7ad7795e6d1 to your computer and use it in GitHub Desktop.
Print the href when a document is printed with css
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
@media only print { | |
a[href]:after { | |
content: " (" attr(href) ")" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment