1. ホーム
  2. ハイパーリンク

[解決済み】htmlのハイパーリンク 'a' タグのデフォルトのリンクカラーを削除するにはどうしたらいいですか?

2022-03-30 15:39:11

質問

デフォルトのリンクカラーは青です。 htmlのハイパーリンクタグのデフォルトのリンクカラーを削除するには <a> ?

解決方法は?

その 継承値 :

a { color: inherit; } 

... を指定すると、その要素は親の色になります (これはあなたが探しているものだと思います)。

以下、ライブデモをご覧ください。

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>