标签的默认链接颜色

标签的默认链接颜色

本文介绍了如何删除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;标签的默认链接颜色?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-06 07:01