After the input box in the Google browser to save passwords style did not how to do?

Normal style:
Here Insert Picture Description
Google browser after saving passwords:
Here Insert Picture Description

Solution:

input:-webkit-autofill {
  // 字体颜色
  -webkit-text-fill-color: #ededed !important;
  // 背景颜色
  background-color:transparent;
  // 背景图片
  background-image: none;
  // 过渡
  transition: background-color 50000s ease-in-out 0s;
}

At last:Here Insert Picture Description

Published 50 original articles · won praise 23 · views 1232

Guess you like

Origin blog.csdn.net/qq_44698161/article/details/103170911