input- 자동완성 이슈
input 자동완성 시 노란색 배경 이슈
아이폰 사파리에서 테스트중 자동완성시 input 색상이 변경되는 이슈로 위에 코드로 이슈 해결
/* webkit input box color */
input:-webkit-autofill {
transition: background-color 1000s ease-in-out 0s;
}
Last updated
Was this helpful?