admin 发表于 2019-4-25 23:34:39

【CSS3】去除浏览器输入框记住账号密码后的背景色

input:-webkit-autofill , textarea:-webkit-autofill, select:-webkit-autofill {
        -webkit-text-fill-color: #ededed !important;
        -webkit-box-shadow: 0 0 0px 1000px transparentinset !important;
    background-color:transparent;
    background-image: none;
   transition: background-color 50000s ease-in-out 0s; //背景色透明生效时长过渡效果启用时延迟的时间
}
input {
       background-color:transparent;
}
页: [1]
查看完整版本: 【CSS3】去除浏览器输入框记住账号密码后的背景色