기록

크롬 input 태그에 자동생성 백그라운드 색 제거하기

해은 2020. 10. 21. 16:32
input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 1000px transparent inset;
}
input:-webkit-autofill, input:-webkit-autofill:hover, input:-webkit-autofill:focus, input:-webkit-autofill:active {
  transition: background-color 5000s ease-in-out 0s;
}

'기록' 카테고리의 다른 글

JS 아스키코드 변환하기  (0) 2020.10.31
JS Prototype  (0) 2020.10.26
함수형 프로그래밍  (0) 2020.10.18
PWA (Progressive Web App)  (0) 2020.10.03
크롬에서 프린트시 배경색이 나오도록 하기  (0) 2020.09.16