Skip to content

Instantly share code, notes, and snippets.

@trumball
Created May 24, 2013 20:36
Show Gist options
  • Save trumball/5646347 to your computer and use it in GitHub Desktop.
Save trumball/5646347 to your computer and use it in GitHub Desktop.
Display URLS In A Printed Webpage If you run a news website or resource with lots of print material, this is possibly one of the greatest snippets you’ll ever find. Anchor links in your webpage will look and display exactly as normal. However when printed your users will be able to see the link text along with the full hyperlinked URL. This is h…
@media print {
a:after {
content: " [" attr(href) "] ";
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment