CSS修改自动填充样式

一般方法

-webkit-box-shadow 修改背景颜色,-webkit-text-fill-color修改字体颜色

input:-webkit-autofill {  
  -webkit-box-shadow:0 0 0 100px #22272e inset !important;  
  -webkit-text-fill-color: #adbac7;  
}

背景颜色透明

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

其他相关选择器

  • input:-webkit-autofill:hover
  • input:-webkit-autofill:focus
  • textarea:-webkit-autofill
  • textarea:-webkit-autofill:hover
  • textarea:-webkit-autofill:focus
  • select:-webkit-autofill
  • select:-webkit-autofill:hover
  • select:-webkit-autofill:focus