關於鼠標點擊,會有幾個階段的情況
指正常的未被訪問過的鏈接
1 a:link{ 2 text-decoration:none;
3 }
指已經訪問過的鏈接
1 a:visited{ 2 text-decoration:none; 3 }
指鼠標在鏈接上懸停
1 a:hover{ 2 text-decoration:none; 3 }
指正在點擊(未松開)的鏈接
1 a:active{ 2 text-decoration:none; 3 }
在這幾種情況下根據需求添加顏色即可!