想改 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 放到最后。
posted on 2010-02-24 22:04
流浪汗 阅读(973)
评论(3) 编辑 收藏 所属分类:
HTML