How do I remove the default link color of the html hyperlink #39;a#39; tag?(如何删除html HYPERLINK;a;a;标签的默认链接颜色?)
问题描述
默认链接颜色为蓝色。
如何删除html超级链接标记的默认链接颜色<a>
?
推荐答案
inherit value:
a { color: inherit; }
…将使元素呈现其父元素的颜色(我认为这就是您要寻找的颜色)。
以下是现场演示:
数据-lang="js"数据-隐藏="真"数据-控制台="真"数据-巴贝尔="假">a {
color: inherit;
}
<p>The default color of the html element is black. The default colour of the body and of a paragraph is inherited. This
<a href="http://example.com">link</a> would normally take on the default link or visited color, but has been styled to inherit the color from the paragraph.</p>
这篇关于如何删除html HYPERLINK;a;a;标签的默认链接颜色?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!