蓝图

发布于 2024-09-04 00:46:57 字数 368 浏览 3 评论 0原文

可能的重复:
使用蓝图显示 URL 的超链接

如果我包含蓝图,页面中的所有链接都会像这样(如果这是 google.com 上的链接) google(http://google.com)+ 所有 unerline 但如果我删除蓝图链接看起来很好没有括号?

它可以是什么?

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 brackets ?

what it can be ??

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

仅冇旳回忆 2024-09-11 00:46:57

你是说蓝图CSS吗?这是因为 print.css 中的以下几行:

a:link:after, a:visited:after {
  content: " (" attr(href) ")";
  font-size: 90%;
}

内容:-行“打扰”了您。您是否也包含用于屏幕媒体的 print.css ?你的 HTML 是什么样的?

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?

青衫负雪 2024-09-11 00:46:57

确保链接项的媒体属性设置为“打印”

<link rel="stylesheet" href="App_Themes/Default/print.css" type="text/css" media="print" />

负责此操作的 CSS 如下所示:

a:link:after, a:visited:after {content:" (" attr(href) ")";font-size:90%;}

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%;}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文