I\'m re-asking this question because its answers didn\'t work in my case.
In my stylesheet for printed media I want to append the url after every link using the
I had the same problem and my solution was to set height and overflow:hidden
http://jsfiddle.net/r45L7/
a { text-decoration: underline; } a:after { content: "»"; display: inline-block; text-decoration: none; height:16px; overflow: hidden; padding-left: 10px; }
It works on IE, FF, Chrome.