amol
amol

Reputation: 1555

Iphone input fields showing inner shadow

I am using input[type="text"] or input[type="password"] in my HTML, but when I test the code on iphone, there showing small inner shadow at the top. I have tried box-shadow: none;

Upvotes: 0

Views: 259

Answers (1)

user3788405
user3788405

Reputation:

Try this code

input[type="text"], input[type="password"]:-webkit-appearance: none;

Upvotes: 1

Related Questions