使用 CSS 将鼠标移到样式链接上
要使用 CSS 将鼠标移到样式链接上,请使用 CSS 中的:hover 选择器。你可以尝试运行以下代码来实现:hover,选择器,
示例
<!DOCTYPE html> <html> <head> <style> a:hover { background-color: orange; } </style> </head> <body> <a href = "https://www.google.com">Google</a> <p>Keep the mouse cursor on the above link and see the effect.</p> </body> </html>
广告