0

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

2 回答 2

2

更改#mainpage a:hovera#mainpage:hover,然后重复其余部分(已访问,等等...)

于 2012-12-29T23:30:08.517 回答
0

试试这个...

#mainpage:hover对所有其他人也是如此……

这可能有效...

于 2012-12-29T23:34:26.727 回答