CSS Selected Fields
How to avoid "-internal-autofill-selected" style to be applied?
CSS - set the background color of ::selection in an INPUT or TEXTAREA in webkit / chrome?
input:-internal-autofill-selected {
Chrome Field Select
:input:-webkit-autofill, input:-webkit-autofill:focus { transition: background-color 600000s 0s, color 600000s 0s; }
:::selection { background: #FF5700; color: #fff; }
::caret-color: #ff5700;
https://stackoverflow.com/questions/...-to-be-applied