neat CSS trick

Have you ever wanted to have your site automatically display a URL in brackets next to what it's linked to? (for example: link (http://staticred.net) )

Now you can, at least in Opera and Mozilla. In your stylesheet, add the following ruleset:

a:after {
    content: " (" attrib(href) ")" ;
}

That'll do it!

Content - Cascading Style Sheets Properties