CSS: display an URL after each hyperlink

This is an awesome and comfortable way to automatically display the URL from the href-attribute after each link just with CSS:

a:after { content: attr(href);}

When using this CSS rule, your links will be displayed something like this:

This is your Linktext http://yourlink.com/

Have fun and use this basic css technique for example in print stylesheets or, in an extended way even on your site.