Reputation: 26142
There is a default inner shadow on the input element in Firefox on Android.
Is it possible to remove it with CSS?
Upvotes: 0
Views: 853
Reputation: 31
I had the same problem, the solution is:
background-image: none;
Upvotes: 3
Reputation: 6016
try this
::-moz-focus-inner {border: 0;padding: 0;}
Upvotes: 1