CSS 参考手册
CSS :active 选择器
选择激活的链接样式
源代码:
点击运行 »
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <style> a:active { background-color: yellow; } </style> </head> <body> <a href="https://www.mifengjc.com/">mifengjc.com</a> <a href="http://www.wikipedia.org">wikipedia.org</a> <p><b>注意:</b> :active选择器样式触发时链接到链接页面</p> </body> </html>
运行结果:
点击运行 »