본문 바로가기
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;}