input:-internal-autofill-selected {
appearance: menulist-button;
background-image: none !important;
background-color: -internal-light-dark(rgb(232, 240, 254), rgba(70, 90, 126, 0.4)) !important;
color: -internal-light-dark(black, white) !important;
}
将上面代码修改为:
input:-internal-autofill-previewed,
input:-internal-autofill-selected {
-webkit-text-fill-color: DarkTurquoise;
transition: background-color 5000s ease-out 0.5s;
}
搜索框选中状态出现边框如何取消
.search-form input.search-field:focus{
outline: none;
}