Home  >  Article  >  Web Front-end  >  How to change the color of active links using CSS

How to change the color of active links using CSS

王林
王林forward
2023-08-24 22:05:02785browse

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.

Example

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!

Statement:
This article is reproduced at:tutorialspoint.com. If there is any infringement, please contact admin@php.cn delete