0

I have a form that keeps coloring an input background green, even though I seem to have done everything I can to make it white:

enter image description here

HTML enter image description here

Chrome Computed Style enter image description here

Does anyone understand what's going on?

Thanks

Steve
  • 4,534
  • 9
  • 52
  • 110

1 Answers1

0

i think you should use simple CSS style to fix it.

.password:hover,.password:focus,.password:target,.password:active{
    background:#fff;
}
satis
  • 105
  • 2
  • 14