html,css

[CSS] -webkit-tap-highlight-color / 모바일 터치 / css 대응

이레의 개발노트 2022. 12. 12. 14:48
728x90
반응형

모바일에서 a태그 또는 input 터치 시 하이라이트 효과가 나오는 경우가 있습니다.

이를 제거 하기 위해서는  -webkit-tap-highlight-color 를 사용합니다.

 

input { -webkit-tap-highlight-color:transparent; /*ios 대응*/}
input { -webkit-tap-highlight-color:rgba(0, 0, 0, 0); outline:none; /*android 대응*/}

단, div에서는 지원이 안됩니다.

728x90
반응형