반응형
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);
}
반응형
'프로그래밍 > HTML+CSS' 카테고리의 다른 글
html5 canvas draw & filltext & imageurl (0) | 2016.08.23 |
---|---|
css 버튼 뾰족 효과 (1) | 2016.08.18 |
HTML 특수문자 코드표 (0) | 2016.07.05 |
모바일 아이콘/웹 북마크 아이콘 지정 (0) | 2015.04.23 |
html&css 인쇄 설정/javascript print (0) | 2015.04.17 |