即使我已禁用所有相关 CSS,我的网站上的链接下仍出现蓝线?

发布于 2024-12-18 04:06:34 字数 195 浏览 2 评论 0原文

点击此处查看问题

我已尝试禁用文本装饰、轮廓、边框以及我能想到的所有其他内容。使用检查工具我找不到任何会导致这些蓝线的东西。

此问题不影响 Firefox。

带有蓝色下划线的文本是锚标记内部的span

Click here to see the issue

I've tried disabled text-decoration, outlines, borders, and everything else I can think of. Using the inspect tool I cannot find anything that would cause these blue lines.

This issue does not affect Firefox.

The text with the blue underline is a span inside of an anchor tag.

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

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

发布评论

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

评论(6

固执像三岁 2024-12-25 04:06:34

你似乎有这个问题:
http://www.google.com/support /forum/p/Chrome/thread?tid=44100701f93d5951&hl=en

当您按 F12 并检查受影响的元素时,您应该注意到这一点:

a:-webkit-any-link{
...
text-decoration: underline;
}

所以也许添加一个像这样的样式表:

a:-webkit-any-link{
text-decoration:none !important;
}

更新:我复制了它,并将上面的样式表添加到您的 main.css 文件中。
不需要两个“:”,这可能是一个错字。

不管怎样,它解决了我电脑上的问题,尝试将其添加到你的 main.css 中,它应该可以工作。
谢谢!

You seem to have this problem:
http://www.google.com/support/forum/p/Chrome/thread?tid=44100701f93d5951&hl=en

When you press F12 and inspect the elements affected, you should notice this:

a:-webkit-any-link{
...
text-decoration: underline;
}

So maybe adding a stylesheet like this:

a:-webkit-any-link{
text-decoration:none !important;
}

UPDATE : I reproduced it and the above stylesheet, added to your main.css file worked.
No need of two ":", it was a typo probably.

Anyway it solved the problem on my PC, try to add it to your main.css and it should work.
Thanks!

弃爱 2024-12-25 04:06:34

Chirs Felstead 解决方案通过您分享的第一个链接解决您的问题。 (https://i.sstatic.net/ucwHn.jpg)

用于删除此处的蓝色下划线(http://akoostix.titanlabs.ca/?service=customers#home_page_news_section)

在第 1 行中向以下行引入文本装饰

#front_page_services #service_operators {
  text-decoration: none;
}

。 51 front-page-services.css

Chirs Felstead solution resolve your issue with the first link you shared. (https://i.sstatic.net/ucwHn.jpg)

For removing the blue underline here (http://akoostix.titanlabs.ca/?service=customers#home_page_news_section)

introduce text-decoration to the below line

#front_page_services #service_operators {
  text-decoration: none;
}

in line no. 51 on front-page-services.css

鱼忆七猫命九 2024-12-25 04:06:34

标准方法是:

a {
    text-decoration: none;
}

请详细解释一下锚点内部的跨度,因为这听起来是倒着的。应锚固在跨度内。

The standard way is:

a {
    text-decoration: none;
}

Please explain more about the span inside an anchor as that sounds backwards. should be anchor inside span.

蒗幽 2024-12-25 04:06:34

像这样定义样式:

#front_page_services a {
    text-decoration: none;
}

Define style like this:

#front_page_services a {
    text-decoration: none;
}
你怎么这么可爱啊 2024-12-25 04:06:34

在锚元素上使用 text-decoration 属性,而不是 span。

<a id="service_managers" href="http://akoostix.titanlabs.ca/services/managers" style="
text-decoration: none">

在您的页面上测试并且有效。

Use the text-decoration attribute on you anchor element, not span.

<a id="service_managers" href="http://akoostix.titanlabs.ca/services/managers" style="
text-decoration: none">

Tested on your page and it works.

假扮的天使 2024-12-25 04:06:34

在您的 global.css 中是条目

a:hover { 
    color: #4E76C9; 
    text-decoration: underline; /* Add this */ 
}

In your global.css is the entry

a:hover { 
    color: #4E76C9; 
    text-decoration: underline; /* Add this */ 
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文