我在一些文本周围放了一个标签,并给它一个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;
}