e0yu

最近在前端写页面的时候,遇到了三个苹果手机的专属BUG,记录下...

BUG1:苹果手机 form 表单的input有阴影

解决方法:

input { /* 1 */
  overflow: visible;
  outline:none;
  -webkit-appearance: none;
}

BUG2:苹果手机form表单里的input是圆角

解决办法:

input{
  border-radius:0;      
}

BUG3:苹果手机里面的的手机号码会被识别,添加蓝色

解决办法:添加meta属性

<meta name="format-detection" content="telephone=no" />

 

分类:

技术点:

相关文章:

  • 2021-12-30
  • 2021-07-09
  • 2022-12-23
  • 2021-10-18
  • 2021-10-20
  • 2021-11-18
  • 2022-12-23
  • 2021-07-10
猜你喜欢
  • 2021-06-20
  • 2022-12-23
  • 2021-12-12
  • 2022-02-11
  • 2021-04-08
  • 2021-11-25
  • 2021-12-15
相关资源
相似解决方案