How to remove background colour for Autocomplete on RadzenTextBox

I'd like to remove the AutoComplete styling for a RadzenTextBox. I'd still like to use AutoComplete.
Using Microsoft Edge and Microsoft Windows 11.
The picture demonstrates AutoComplete styling for the First Name and typed styling for Email:

Hi @SnowyOwl,

I'm afraid this is not possible without js hacks:

More info at :autofill - CSS | MDN

Thank you, Yordanov. I looked and found this after you pointed it out, and it does work on Microsoft Edge.

*:-webkit-autofill,
*:-webkit-autofill:focus {
    transition: background-color 0s 600000s, color 0s 600000s !important;
}
1 Like