a标签代码如下:
我在CSS里规定了
a:link { text-decoration: none;}a:visited { text-decoration: none;}a:hover { color: #515151;}a:active { text-decoration: none;} 但不知为什么对这两个a标签不起效果
回复讨论(解决方案)
加上href属性
a {
cursor:pointer;
}
或者
++++++++
a {
cursor:pointer;
}











