Computer >> Computer tutorials >  >> Programming >> CSS

How to change the color of focused links with CSS


Use the :focus class to change the color of focused links. Possible values could be any color name in any valid format.

Example

You can try to run the following code to implement the color of the focused link −

<html>
   <head>
      <style>
         a:focus {
            color: #0000FF
         }
      </style>
   </head>
   <body>
      <a href = ""> This is demo link </a>
   </body>
</html>