リンクに触れると文字色が変わる

このスタイルシートを使うとリンクに触れただけで背景色がついたり色が変わったりします。

HEADタグの中に入れて下さい
<STYLE><--A:link   {color:blue ;text-decoration:underline;}
A:visited{color:red  ;text-decoration:underline;}
A:hover  {color:blue;text-decoration:none;background:#00ffff}
A:active {color:pink ;text-decoration:underline;}--></STYLE>
この設定では以下のリンクが次の用になります。
YahooJapan

◆また各パラメーターの説明です。

A:link リンクが張られている文字です
A:visited 訪問済みのリンク先です
A:hover マウスが乗っている状態のリンクです
A:active クリックしたあとのリンクです
text-decoration:none −線無し(これはこちらでも紹介しました)
text-decoration:line-through −文字の中心に線を入れる
text-decoration:underline −文字の下部に線を入れる
text-decoration:overline −文字の上部に線を入れる

トップへ戻る