解决Chrome表单文本框自动填充黄色背景色的黑科技

来源:互联网 发布:阿里云虚拟 编辑:程序博客网 时间:2024/05/17 02:49

两个方法都适用于设置透明背景。
第一个方法比较搞笑……

方法一:

input:-webkit-autofill,input:-webkit-autofill:hover,input:-webkit-autofill:focus,input:-webkit-autofill:active {    transition: background-color 5000s ease-in-out 0s;}

方法二:

@-webkit-keyframes autofill {    to {        color: #666;        background: transparent;    }}input:-webkit-autofill {    -webkit-animation-name: autofill;    -webkit-animation-fill-mode: both;}
阅读全文
0 0
原创粉丝点击