为什么我的超链接没有改变颜色或下划线?我在标准 VS 2010 站点中的 CSS 中有:
a:link, a:visited
{
color: #034af3;
outline: none;
}
a:hover
{
color: #1d60ff;
text-decoration: none;
outline: none;
}
a:active
{
color: #034af3;
outline: none;
}
p
{
margin-bottom: 10px;
line-height: 1.6em;
}
我究竟做错了什么?我在错误的地方吗?谢谢!