About Lesson
a : visited – इस selector को link की visited state को design करने के लिए use किया जाता है। ये वो state होती जब link visit की जा चुकी है।
a : visited– This selector is used to design the visited state of the link. This is the state when the link has been visited.
Example:
<html> <head> <title> a : visited </title> <style> a:visited { color:gold; } </style> </head> <body> <a href=”https://nielitexam.co.in”>AK IT SOLUTION</a> </body> </html> |