之前做过一些页面,里面用到了input里的button,和button标签,在安卓手机上测试,样式都能正常显示;但是在苹果手机上,所有的按钮都变成了苹果默认的UI。
想要保持苹果和安卓的风格一致,需要对苹果默认的样式初始化,代码如下:
input[type="submit"], input[type="reset"], input[type="button"], input[type="text"], input[type="file"], input[type="password"], textarea, button {
appearance:none;
-moz-appearance:none;
-webkit-appearance: none !important;
}