iPhone去除input默认样式

/*<!---->去掉苹果短的样式*/
        input[type="button"],
        input[type="submit"],
        input[type="reset"] {
            -webkit-appearance: none;
        }

        textarea {
            -webkit-appearance: none;
        }
原文地址:https://www.cnblogs.com/caoyuna/p/11719554.html