1. Home
  2. Articles
  3. Web Design
  4. Browser Compatiblity
  5. Safari Mobile
  6. Remove iPhone Submit Button Format

Remove iPhone Submit Button Format

Published:

Share

Description

Brought the site up on an iPhone and saw the automatic formatting of the search submit button was not consistent with the rest of the sites design.

Article

Adding the following CSS removes the bevel, rounded corners and other default styling from the submit button.

input {
   -webkit-appearance: none;
   -moz-appearance: none;
   appearance: none;
}

This should carry over to all input types.

Author

Tags

  1. Articles
  2. Web Design
  3. Browser Compatiblity
  4. Safari Mobile

Related Articles