H5页面中删除iPhone自带样式

  在手机端H5页面中,iPhone往往会添加自己的样式.

  比如:H5日期标签<input type="date" >,在安卓机型下不会显示特殊样式,但是在iPhone中会自带自己一个很丑的样式.又如:<input type="text" >,iPhone会自带阴影,安卓机没有.

  如何去掉它?很简单,加上一行CSS代码: -webkit-appearance: none;

原文地址:https://www.cnblogs.com/peiyuanming/p/4626207.html