In Firefox, when printing a page with anchor tags, the link location is printing after the text
anchor, blueprint-css, firefox, href, printing
Solution
The answer was in the css framework we are using (Blueprint). There was the below line in the style file:
a:link:after,a:visited:after{content:"(" attr(href) ")";font-size:90%}
Guess this might help others who use Blueprint.
Problem
For example, ``` <a href="../somepage/page.aspx?qs=asdf">Text Here</a> ``` will print out as... Text Here(../somepage/page.aspx?qs=asdf) In IE, it looks normal (doesn't print the url). Any ideas why this is acting in this fashion?