CSS :hover 선택기를 사용하여 CSS로 마우스 오버 시 링크 스타일을 지정합니다. 다음 코드를 실행하여 :hover 선택기 −
를 구현할 수 있습니다.예시
<!DOCTYPE html> <html> <head> <style> a:hover { background-color: orange; } </style> </head> <body> <a href = "https://www.qries.com">Qries</a> <p>Keep the mouse cursor on the above link and see the effect.</p> </body> </html>