リンクテキストの設定〜CSS
【概要】
リンクテキスト設定一覧
【a】
全体のリンクテキストの設定を行います。
[例]
a { text-decoration:underline; color:#000000;}
【a:link】
未訪問のリンクテキストの設定を行います。
[例]
a:link{ color:#000000;}
【a:visited】
訪問済みのリンクテキストの設定を行います。
[例]
a:visited{ color:#000000;}
【a:active】
アクティブ時のリンクテキストの設定を行います。
[例]
a:active{ color:#000000;}
【a:hover】
オンマウス時のリンクテキストの設定を行います。
[例]
a:hover{ text-decoration:underline; color:#000000;}

