0

There is a default inner shadow on the input element in Firefox on Android.

Is it possible to remove it with CSS?

WHITECOLOR
  • 24,996
  • 37
  • 121
  • 181

2 Answers2

3

I had the same problem, the solution is:

background-image: none;
Paresh Mayani
  • 127,700
  • 71
  • 241
  • 295
Genevieve
  • 31
  • 2
1

try this

::-moz-focus-inner {border: 0;padding: 0;}
Pattle
  • 5,983
  • 8
  • 33
  • 56