CSS 清除 iOS 下 input 表单的阴影

阅读(26483)

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

input{
    -webkit-appearance: none;
}
Tags: