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


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 閲覧中、読み込み中の状態のリンクです
color: 文字色(16進数でも色名でも指定できます)
background: 背景色(16進数でも色名でも指定できます)
text-decoration:none −線無し
text-decoration:line-through −文字の中心に線を入れる
text-decoration:underline −文字の下部に線を入れる
text-decoration:overline −文字の上部に線を入れる

トップページ