私は最初のサイトを構築しようとしていて、CSSの「a:hover」機能を使用しようとしていますが、それを機能させることができません。リンクは、ホバリングしているかどうかに関係なく同じように見えます。
これが私のCSSファイルのスニペットです:
/* main page elements */
a:link
{
text-decoration: none;
color:white;
}
a:visited
{
text-decoration: none;
color:FFFFFF;
}
a:hover
{
text-decoration: none;
color:blue;
}
a:active
{
text-decoration: none;
color:blue;
}
助けていただければ幸いです。
ありがとう、ロバート。