input 选自动填充,去除浏览器自动填充后样式

input 选自动填充,去除浏览器自动填充后样式_第1张图片

 input 选自动填充,去除浏览器自动填充后样式_第2张图片
自动填充后,本来黑色的背景色变白,字体变黑。

input:-webkit-autofill {
    -webkit-text-fill-color: #fff; // 设置填充不变色

    transition: background-color 50000s ease-in-out 0s;
  }
  input:-internal-autofill-previewed,
  input:-internal-autofill-selected {
    -webkit-text-fill-color: #fff;
    transition: background-color 5000s ease-out 0.5s;
  }

你可能感兴趣的:(css,css,css3,html)