:link pseudo-class is used to add special styles to unvisited links. Possible values can be color names in any valid format.
<html> <head> <style> a:link { color:#000000; } </style> </head> <body> <a href = ""> Demo Link </a> </body> </html>
The above is the detailed content of Use in CSS: Usage of link pseudo-class. For more information, please follow other related articles on the PHP Chinese website!