Inner shadow text inputs

How To Remove Inner Shadow From Text Inputs On Mobile Safari

Apple products are great, but the mobile iOS is adding extra styles to form elements. This can be quite annoying if you want to get your design to look exactly the same in most browsers.

Here is how you can remove inner shadow from text inputs and textareas on Mobile Safari. Simply apply the following css to your text inputs.

/* Remove inner shadow from inputs on mobile iOS */
textarea, input[type="text"] {
-webkit-appearance: none;
}

One thought on “How To Remove Inner Shadow From Text Inputs On Mobile Safari

Leave a Reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.