Google浏览器记住密码,自动填充后去除背景色,input内容填入样式变黑问题

google浏览器记住密码之后,账号密码框自动填充到input当中,输入框的背景色为白色,color为黑色,目标是去除这些自动填充之后的默认样式。

		input:-webkit-autofill {  
		    -webkit-text-fill-color: #ededed !important;  
		    -webkit-box-shadow: 0 0 0px 1000px transparent  inset !important;  
		    background-color:transparent;  
		    background-image: none;  
		    transition: background-color 50000s ease-in-out 0s;  
		}  
		input {  
		    background-color:transparent;  
    		  caret-color: #fff;  // 光标颜色
		}  

你可能感兴趣的:(前端,javascript,jquery,css)