我試圖建立我的第一個網站,並試圖在CSS中使用「a:hover」功能,但無法使其工作 - 鏈接看起來是否相同,無論是懸停或不。CSS a:懸停不按預期工作
這裏是我的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;
}
任何幫助表示讚賞。
謝謝, 羅伯特。
它做錯了什麼?你的HTML在哪裏? – 2012-04-04 15:05:09