WHITECOLOR
WHITECOLOR

Reputation: 26142

Remove default input inner shadow in Firefox on Android

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

Answers (2)

Genevieve
Genevieve

Reputation: 31

I had the same problem, the solution is:

background-image: none;

Upvotes: 3

Pattle
Pattle

Reputation: 6016

try this

::-moz-focus-inner {border: 0;padding: 0;}

Upvotes: 1

Related Questions