a:link,a:visited{color:#5F5F5F; text-decoration:none;}
a:hover{text-decoration:underline;}
Please tell me a:link ,a:visited What does "link, visited and hover respectively" mean? Please explain it in the most popular terms. Thank you
Why do you write it like this? Asking for answers from experts
link Hyperlink style when not clicked
a:hover When the mouse is placed on the link Uptime style
a:active Style when a link is clicked
a:visited Style when a link is clicked
However, due to security reasons, current browsers Some styles no longer support
This is a cluster selector. You can also write a:link and a:hover separately.