css 标签 a 的 hover 是否有效与出现的顺序有关

css 标签 a 的 hover 是否有效与出现的顺序有关
想改 a  的默认方式,比如:链接不要下划线,鼠标移到上面时有划线。

css 如
a:hover  { text-decoration :  underline ; }
a:link 
{ text-decoration :  none ; }
a:visited 
{ text-decoration :  none ; }

是没有达到鼠标称到上面有划线。

必须改为:
a:link  { text-decoration :  none ; }
a:visited 
{ text-decoration :  none ; }
a:hover 
{ text-decoration :  underline ; }

a:hover 放到最后。


你可能感兴趣的:(css 标签 a 的 hover 是否有效与出现的顺序有关)