Reputation: 1555
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
Reputation:
Try this code
input[type="text"], input[type="password"]:-webkit-appearance: none;
Upvotes: 1