How to make auto filled place transparent in css?

Make auto filled place transparent in css



//paste this code in stylesheet (for input fields)

@-webkit-keyframes autofill {
    to {
        color: #fff;
        background: transparent;
    }
}

input:-webkit-autofill {
    -webkit-transition-delay: 99999s;
    -webkit-animation-name: autofill;
    -webkit-animation-fill-mode: both;
}