Written By:-Avinash Malhotra
Pseudo classes are used to add some special effects to some selectors.Pseudo class for anchor:
An anchor tag has following pseudo classes:
- a:link
- a:visited
- a:active
- a:hover
When an anchor tag is a link( href tag is used), text color will becomes blue automaticly
For Example
LINK
we can also chane the color of link, for example
LINK WITH COLOR RED AND N0 UNDERLINE
Way to write CSS
a:link{ color:red; text-decoration:underline}