Home > Article > Web Front-end > How to change the color of active links using CSS
Use the :active class to change the color of active links. Possible values can be any color name in any valid format.
You can try running the following code to achieve the color of active links −
<html> <head> <style> a:active { color: #FF00CC } </style> </head> <body> <a href = "">My Link</a> </body> </html>
The above is the detailed content of How to change the color of active links using CSS. For more information, please follow other related articles on the PHP Chinese website!