input 选择历史值后,输入框变为白背景色
1 input:-webkit-autofill { 2 -webkit-animation: autofill-fix 1s infinite!important; 3 -webkit-text-fill-color: #666; 4 -webkit-transition: background-color 50000s ease-in-out 0s!important; 5 -webkit-box-shadow: 0 0 0 1000px transparent inset!important; 6 transition: background-color 50000s ease-in-out 0s!important; 7 background-color: transparent!important; 8 background-image: none !important; 9 } 10 [role=button], a, area, button, input:not([type=range]), label, select, summary, textarea { 11 -ms-touch-action: manipulation; 12 touch-action: manipulation; 13 } 14 input[type=number], input[type=password], input[type=text], textarea { 15 -webkit-appearance: none; 16 }