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:link {text-decoration: none;}
a:visited {text-decoration: none;}
a:hover {text-decoration: underline;}
a:visited {text-decoration: none;}
a:hover {text-decoration: underline;}
a:hover 放到最后。