input的type=password,获取焦点背景变黄色

1.input的类型(type="password")的时候,只需要在input中假如autocomplete="new-password"


2.input类型不是“password”,是“text”或其他时:

body input:-webkit-autofill,
body textarea:-webkit-autofill,
body select:-webkit-autofill {
    -webkit-box-shadow: 0 0 0px 1000px #232335 inset !important;
    background-color: #232335 !important;
    background-image: none !important;
    -webkit-text-fill-color: #fff;
    -webkit-tap-highlight-color: #fff !important;
}

你可能感兴趣的:(input的type=password,获取焦点背景变黄色)