의사 요소에 대한 호버 효과
부모 요소(#button)와 의사 요소(#button)가 있는 설정이 있습니다. :전에). 순수 CSS나 jQuery를 사용하여 의사 요소에 호버 스타일을 적용할 수 있는지 궁금합니다.
CSS 전용 접근 방식
호버 효과를 적용하려면 의사 요소 자체의 경우 다음 구문을 사용합니다.
#button:before:hover { /* Hover styles for the pseudo element */ }
예:
#button:before { background-color: blue; content: ""; display: block; height: 25px; width: 25px; } #button:before:hover { background-color: red; }
다른 요소에 대한 마우스 오버 효과
의사 요소가 다른 요소 위에 마우스를 올리면 반응하도록 하려면 다음 CSS를 사용하세요.
#element-to-hover:hover #button:before { /* Hover styles for the pseudo element when the other element is hovered */ }
예:
#button { display: block; height: 25px; margin: 0 10px; padding: 10px; text-indent: 20px; width: 12%; } #button:before { background-color: blue; content: ""; display: block; height: 25px; width: 25px; } #parent-element:hover #button:before { background-color: red; }
위 내용은 CSS의 의사 요소에 호버 효과를 적용할 수 있나요?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!