IOS h5页面采坑记录

1. input 输入框样式

IOS上回会有个很丑的内边框 


添加  -webkit-appearance: none;  就可以去掉

  input {
    height: 100%;
    width: 100%;
    box-shadow: none;
    outline: none;
    padding: 0 10*@p;
    border: none;
    border-radius: 4*@p;
    -webkit-appearance: none; /** 去掉内阴影 */
  }

去掉效果



猜你喜欢

转载自blog.csdn.net/Candy_home/article/details/80057493