Skip to content

Commit

Permalink
Added explanations to print.css
Browse files Browse the repository at this point in the history
  • Loading branch information
Montoya committed Sep 29, 2010
1 parent 889b8e5 commit f2fa2ff
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions blueprint/src/print.css
Expand Up @@ -72,6 +72,13 @@ a:link, a:visited {
text-decoration: underline;
}

/*
This has been the source of many questions in the past. This
snippet of CSS appends the URL of each link within the text.
The idea is that users printing your webpage will want to know
the URLs they go to. If you want to remove this functionality,
comment out this snippet and make sure to re-compress your files.
*/
a:link:after, a:visited:after {
content: " (" attr(href) ")";
font-size: 90%;
Expand Down

0 comments on commit f2fa2ff

Please sign in to comment.