CSS로 마우스 오버 시 링크의 스타일을 지정하려면 CSS:hover 선택기를 사용하십시오. hover, selector,
를 구현하기 위해 다음 코드를 실행할 수 있습니다.예시
<!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>