css CSS片段用于覆盖输入文本的chrome自动完成样式

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了css CSS片段用于覆盖输入文本的chrome自动完成样式相关的知识,希望对你有一定的参考价值。

/* used to override pale yellow color that chrome uses when user chooses an item from 
its autocomplete list */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    transition: background-color 5000s ease-in-out 0s;    
}

input:-webkit-autofill {
    -webkit-text-fill-color: #fff;
}

input:-webkit-autofill:focus {  
    -webkit-text-fill-color: #fff;
} 

以上是关于css CSS片段用于覆盖输入文本的chrome自动完成样式的主要内容,如果未能解决你的问题,请参考以下文章

用于在 Chrome 中设置 HTML5 日期输入日历样式的 CSS

自上次 chrome 更新以来,我的 HTML 输入字段默认为“只读”

Chrome 开发者工具:如何找出覆盖 CSS 规则的内容?

为啥 shinyFeedback 会覆盖自定义 CSS?

为啥在 IE 10 中 CSS 文本颜色会覆盖占位符颜色?

CSS 过渡:不透明度和可见性过渡不适用于 Firefox(适用于 Chrome / Safari)