PUPUNGBP

Remove Default Button and Form Styling on Safari / iOS

Last Updated: June 28, 2020 | Reading Time: < 1 minutes

By default, Safari styles any form field on the webpage to use their own settings. Here’s a short CSS to remove default style:

input[type=text], input[type=button] {
-webkit-appearance: none;
-webkit-border-radius: 0;
}

One Response

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.