テキストの周りにタグを付けて、「メインページ」という ID を付けます。次に、「メインページ」にCCSを追加しましたが、どういうわけか、ホバー、アクティブ、ビストの効果がまったく表示されません。それらを定義するのに何か間違ったことをしましたか?私は初心者で、非常に混乱しています...助けてください!
#mainpage {
color: white;
text-decoration: none;
font-family: Georgia;
font-size: 100px;
color: white;
text-shadow: 0px 0px 1px white;
}
#mainpage a:hover{
color: yellow;
text-decoration: none;
font-family: Georgia;
font-size: 100px;
color: white;
text-shadow: 0px 0px 1px yellow;
}
#mainpage a:active {
color: yellow;
text-decoration: none;
font-family: Georgia;
font-size: 100px;
color: white;
text-shadow: 0px 0px 1px yellow;
}
#mainpage a:visited {
color: white;
text-decoration: none;
font-family: Georgia;
font-size: 100px;
color: white;
text-shadow: 0px 0px 1px white;
}