সমস্ত পরিদর্শন করা লিঙ্কগুলিকে স্টাইল করতে, CSS :visited Selector
ব্যবহার করুনউদাহরণ
আপনি :ভিজিটেড নির্বাচক
বাস্তবায়ন করতে নিম্নলিখিত কোড চালানোর চেষ্টা করতে পারেন<!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>