文字リンクのカラー指定

文字リンクのカラー指定をしても、スタイルの文字スタイルが優先する為、

通常はモノトーンになってしまうが、

!important を指定する事で優先順位を変更してカラー指定を行います。

/*  テキストリンク指定--------------------------------------------- */ 

a:link, a:visited { text-decoration: underline;  } 

a:active { text-decoration: underline; } 

a:hover { text-decoration:none; } 




a:link { color: #0000ff !important; }

a:visited { color: #000080 !important; }

a:hover { color: #ff0000 !important; }

a:active { color: #ff8000 !important; }