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 に答える