By default, it seems Mobile Safari adds the top inner shadow to all input fields, including textarea. Is there a way to remove it?
It\'s especially ugly when you hav
Here is the easy solution
input[type=text] { -webkit-appearance: none; -moz-appearance: none; appearance: none; }