如何删除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>
相关文章