Editor Arrow Download Open
<!DOCTYPE html> <html> <head> <title>CSS :visited Selector</title> <style type="text/css"> a:visited { color: red; } </style> </head> <body> <a href="#">First</a><br /> <a href="#">Second</a><br /> <a href="#">Third</a><br /> </body> </html>
  Preview Arrow