본문 바로가기
CSS

input autofill

by 영감은어디에 2024. 4. 28.
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    transition: background-color 5000s ease-in-out 0s;
    -webkit-transition: background-color 9999s ease-out;
    -webkit-box-shadow: 0 0 0px 1000px #252748 inset !important;
    -webkit-text-fill-color:rgba(255, 255, 255, 0.8) !important;
    border:1px solid #7c7d91 !important;
}
input:-internal-autofill-selected {background-color: #252748 !important;}

'CSS' 카테고리의 다른 글

css 코딩 컨벤션을 위한 세팅  (0) 2024.04.28
css blend 포토샵 레이어 효과  (0) 2024.04.28
부트스트랩 아이콘 배경처럼 넣기  (0) 2024.04.27
input 화살표 버튼 없애기  (0) 2024.04.26
input border 그라디언트 CSS  (0) 2024.04.26