<a> </a> in blue print [duplicate]
Possible Duplicate:
Hyperlinks showing URL with Blueprint
If i include blueprint all my link in page looks like (if it was link on google.com) google(http://google.com)+ all unerline but but if i remove blue print links looks fine without br开发者_StackOverflow社区ackets ?
what it can be ??
You mean blueprint css? That's because of the following lines in print.css :
a:link:after, a:visited:after {
content: " (" attr(href) ")";
font-size: 90%;
}
It's the content:-line that's "bugging" you. Are you including print.css for screen-media too? What does your HTML look like?
Make sure the media attribute of your link item is set to "print"
<link rel="stylesheet" href="App_Themes/Default/print.css" type="text/css" media="print" />
The CSS that is responsible for this looks something like:
a:link:after, a:visited:after {content:" (" attr(href) ")";font-size:90%;}
精彩评论