我正在尝试构建我的第一个站点并尝试使用 CSS 中的“a:hover”功能,但无法使其正常工作 - 无论是否悬停,链接看起来都一样。
这是我的 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;
}
任何帮助表示赞赏。
谢谢,罗伯特。