即使我已禁用所有相关 CSS,我的网站上的链接下仍出现蓝线?
我已尝试禁用文本装饰、轮廓、边框以及我能想到的所有其他内容。使用检查工具我找不到任何会导致这些蓝线的东西。
此问题不影响 Firefox。
带有蓝色下划线的文本是锚标记内部的span
。
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(6)
你似乎有这个问题:
http://www.google.com/support /forum/p/Chrome/thread?tid=44100701f93d5951&hl=en
当您按 F12 并检查受影响的元素时,您应该注意到这一点:
所以也许添加一个像这样的样式表:
更新:我复制了它,并将上面的样式表添加到您的 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:
So maybe adding a stylesheet like this:
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!
Chirs Felstead 解决方案通过您分享的第一个链接解决您的问题。 (https://i.sstatic.net/ucwHn.jpg)
用于删除此处的蓝色下划线(http://akoostix.titanlabs.ca/?service=customers#home_page_news_section)
在第 1 行中向以下行引入文本装饰
。 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
in line no. 51 on
front-page-services.css
标准方法是:
请详细解释一下锚点内部的跨度,因为这听起来是倒着的。应锚固在跨度内。
The standard way is:
Please explain more about the span inside an anchor as that sounds backwards. should be anchor inside span.
像这样定义样式:
Define style like this:
在锚元素上使用
text-decoration
属性,而不是 span。在您的页面上测试并且有效。
Use the
text-decoration
attribute on you anchor element, not span.Tested on your page and it works.
在您的 global.css 中是条目
In your global.css is the entry