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