프로그래밍/HTML+CSS

css 모바일 a태그 클릭시 탭효과 제거

p-a-r-k 2016. 7. 25. 09:57
반응형

remove grey background on link clicked in ios safari


색상&투명도 설정


/* light blue at 80% opacity */
html {
    -webkit-tap-highlight-color: rgba(201, 224, 253, 0.8);
}

/* change it for a div that has a similar background-color to the light blue tap color */
.blueDiv {
    -webkit-tap-highlight-color: rgba(251, 185, 250, 0.9);
}

아예없애기

.myButton {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}


반응형