To print url after a link in CSS you can use the following snippet.
When printing the page each link has its ahref target appended surrounded by Parentheses.
Sample CSS
@media print { a:after { content: " (" attr(href) ") "; } }
All the Code Snippets and Samples you need
To print url after a link in CSS you can use the following snippet.
When printing the page each link has its ahref target appended surrounded by Parentheses.
@media print { a:after { content: " (" attr(href) ") "; } }
You must be logged in to post a comment.
RT @CodeSnippetsNET: Great snippet, How to print url after a link in #CSS http://t.co/oik3U3hJdZ #html #js #php #coding