
sakomicro
December 30, 2021 at 5:36 pm
|
Hi!
Here you see how the browsers affect formfields differently:
https://prnt.sc/25adhgo
There is also a Browser CSS value affecting tables.
I tried to find a selector to change that but couldnt.
Do you know if thats possible and how?
Thanks!
|

Sebastian
December 30, 2021 at 7:11 pm
|
Hey,
I think this stackoverflow thread covers what you’re talking about.
input:-webkit-autofill
And with Firefox setting filter: none can help according to this thread.
Cheers!
Sebastian
|

sakomicro
January 4, 2022 at 6:31 pm
|
Thanks!
This one was the only one that worked for me:
input:-webkit-autofill {
-webkit-box-shadow:0 0 0 50px white inset; /* Change the color to your own background color */
}
|

Sebastian
January 5, 2022 at 10:31 am
|
Oh great, thanks for confirming the solution 🙂
|