views:

350

answers:

2

If I have a normal input element it will show a rounded border with what appears to be an inset shadow.

Any ideas how I can remove this shadow?

+3  A: 

Try

-webkit-appearance: none;
achairapart
Awesome this worked. Thanks!
AndrewVos
@AndrewVos you're welcome :)
achairapart
A: 

If you just want to remove the blue border use this: -webkit-focus-ring-color: none

Javier Parra