开发者

<a> </a> in blue print [duplicate]

This question already has an answer here: Closed 10 years ago.

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%;}
0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜