设置href的 style,开始时写成这样
a.link{
text-decoration:none;
color:#555555;
}
a.hover{
text-decoration:none;
font-weight:bold;
color:#ff0000;
}
a.visited{
text-decoration:none;
}
可是,鼠标hover的时候,字体的颜色没有变成红色,原来,设置属性的时候,顺序是有规定的,
a.hover,需要放在a.link,a.visited之后
a.activate则要放在a.hover之后
a.link{
text-decoration:none;
color:#555555;
}
a.visited{
text-decoration:none;
}
a.hover{
text-decoration:none;
font-weight:bold;
color:#ff0000;
}
这样,就没问题了。。。。
阅读(1284) | 评论(0) | 转发(0) |