如何解决超链接访问后hover样式就不渲染
点击过后的超链接就不具有active和hover了,所以调换L-V-H-A(link-visited-hover-active)
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Document</title> <style> a:link { color:red } a:visited { color:green } a:hover { color:blue } a:active { color:orange } </style> </head> <body> <a href="#">百度</a> </body> </html>
做个傲娇的家伙!

浙公网安备 33010602011771号