본문 바로가기
TIL

[CSS] 터치 이벤트 후 호버 상태 문제(hover state issue after touch event)

by 사탕공방 2022. 12. 1.

문제상황

not hover

hover

위의 상태가 정상인데

touch event가 발생한 경우

hover 상태가 유지되는 문제 발생

해결

구글링

 

How to remove/ignore :hover css style on touch devices

I want to ignore all :hover CSS declarations if a user visits our website via touch device. Because the :hover CSS does not make sense, and it can even be disturbing if a tablet triggers it on clic...

stackoverflow.com

 

@media (hover: hover) and (pointer: fine) {
  a:hover { color: red; }
}

미디어 쿼리로 해결!

댓글