Role of CSS :visited Selector


Use the CSS : visited selector to style all visited links.

Example

You can try to run the following code to implement the :visited selector:

Live demo

<!DOCTYPE html>
<html>
   <head>
      <style>
         a:link, a:visited {
            background-color: white;
            color: black;
            border: 1px solid blue;
            padding: 30px 30px;
            text-align: center;
            text-decoration: none;
            display: inline-block;
         }
         a:hover, a:active {
            background-color: red;
            color: white;
         }
      </style>
   </head>
   <body>
      <a href = "demo.html" target = "_blank">Demo Link</a>
   </body>
</html>

Updated on: 01-Jul-2020

126 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements