input框在ios中的阴影问题

在IOS下,input 和textarea表单默认会有个内阴影,一定程度上影响视觉一致,可通过设置下面代码去掉:

input{
    -webkit-appearance: none;
}

你可能感兴趣的:(html,ios)