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>
karthikeya Boyini
karthikeya Boyini

I love programming (: That's all I know


Advertisements