想改 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
流浪汗 閱讀(999)
評論(3) 編輯 收藏 所屬分類:
HTML