HREF URL Printing in Firefox

When I printeda table with links in it, the URLs would also be printed - annoying.

I was expecting that the links text would be printed, not the URl as well.

I found that this is quite common - even though I had not come across it before.

<table><tr><td><a href="http://annoyingurl.com">Link text</a></td></tr></table>

CSS to the rescue:

a:link:after, a:visited:after {    
  content: "";      
}

You're welcome.