最近在前端写页面的时候,遇到了三个苹果手机的专属BUG,记录下...前端
BUG1:苹果手机 form 表单的input有阴影web
解决方法:app
input { /* 1 */ overflow: visible; outline:none; -webkit-appearance: none; }
BUG2:苹果手机form表单里的input是圆角spa
解决办法:code
input{ border-radius:0; }
BUG3:苹果手机里面的的手机号码会被识别,添加蓝色orm
解决办法:添加meta属性blog
<meta name="format-detection" content="telephone=no" />