CSS :active 选择器的作用
使用 CSS :active 选择器为活动链接设置样式。你可以尝试运行以下代码来实现 :active 选择器 −
示例
<!DOCTYPE html> <html> <head> <style> a:active { background-color: orange; } </style> </head> <body> <a href = "https://qries.com">Welcome to Qries</a> <p>Click on the above link to see the effect.</p> </body> </html>
广告