Ok. Maybe it doesn't work in other webservers, but then why have it at all? This can't be desired behavior. I'm playing with Blueprint CSS Framework and XPages. I'm having a problem with this piece of CSS (print.css) that they include: a:link:after, a:visited:after { content: " (" attr(href) ")"; font-size: …
Domino Development / XPagesShow Correct Answer...Hide Answer...
And to actually more specifically answer your question as well, the extra text is the correct rendering. What this CSS is sayng is, :after every anchor tag (<a>) that is a link, or every visited anchor tag, append the specified content, in this case the href attribute of the anchor tag surrounded by quotes, at 90% the current font size....
Also there may be some reason why its written that way that I am not aware of, but really, the same thing is accomplished by using the a:after selector, like this:
a:after {
content: " (" attr(href) ")"
font-size: 90%;
}