반응형
크롬브라우저나 모바일 webkit기반 브라우저에서는
자동완성값이 저장된 input박스의 배경색으로 파란색(하늘색)으로 표현해 주는 기능이 있다.
이에 대한 말이 나와서.. 구글링 한 결과 css로 잡을 수 있었다. 역시 갓구글
/* input box color */
input:-webkit-autofill { -webkit-box-shadow: 0 0 0 30px #fff inset ; -webkit-text-fill-color: #000; }
input:-webkit-autofill, input:-webkit-autofill:hover, input:-webkit-autofill:focus, input:-webkit-autofill:active { transition: background-color 5000s ease-in-out 0s; }
반응형
'코딩' 카테고리의 다른 글
[html] input file css (0) | 2017.10.11 |
---|---|
[html] 셀렉트박스 기본값에 관해 (2) | 2017.10.10 |
a태그 이중 (0) | 2017.08.18 |
스크린아웃, 히든처리 css (0) | 2016.09.08 |
이미지 sprite 해주는 사이트 (0) | 2016.05.03 |