:visited
visited擬似クラスは訪問済みリンクの色が指定できるセレクタです。
次のセレクタを指定することで、リンク先が未訪問のリンクの場合は赤色に、既に訪問されている場合は青色で表示されます。
a{
color:red;
}
a:visited{
color:blue;
}
このセレクタはa要素に対して指定可能です。
訪問履歴などの個人情報の漏洩を防ぐため、ほとんどのブラウザでは色に関する指定しか指定できないようになっています。
未訪問のリンクの指定にはlink擬似クラスが利用できます。
参考URL
6.6.1.1. The link pseudo-classes: :link and :visited - W3C
登録日 : 2013年06月08日 最終更新日 : 2013年6月8日
同じカテゴリー(Selector)のエントリー
- 兄弟セレクタ
- 隣接セレクタ
- 子セレクタ
- :not()
- idセレクタ
- classセレクタ
- ::after
- ::before
- ::first-letter
- ::first-line
- :indeterminate
- :checked
- :disabled
- :enabled
- :lang()
- :target
- :focus
- :active
- :hover
- :visited
- :link
- :empty
- :only-of-type
- :only-child
- :last-of-type
- :first-of-type
- :last-child
- :first-child
- :nth-last-of-type()
- :nth-of-type()
- :nth-last-child()
- :nth-child()
- :root
- 属性セレクタ
- 子孫セレクタ
- 要素セレクタ
- ユニーバサルセレクタ