Removing input background colour for Chrome autocomplete?

前端 未结 30 1969
失恋的感觉
失恋的感觉 2020-11-22 04:02

On a form I\'m working on, Chrome is auto-filling the email and password fields. This is fine, however, Chrome changes the background colour to a pale yellow colour.

30条回答
  •  太阳男子
    2020-11-22 04:17

    For those who are using Compass:

    @each $prefix in -webkit, -moz {
        @include with-prefix($prefix) {
            @each $element in input, textarea, select {
                #{$element}:#{$prefix}-autofill {
                    @include single-box-shadow(0, 0, 0, 1000px, $white, inset);
                }
            }
        }
    }
    

提交回复
热议问题