美文网首页
ios系统下input边框有默认阴影

ios系统下input边框有默认阴影

作者: yxing1993 | 来源:发表于2018-08-06 10:44 被阅读0次

修复代码

1.input {

    outline: none;

    -webkit-appearance: none; /*去除系统默认的样式*/

    -webkit-tap-highlight-color: rgba(0, 0, 0, 0); /* 点击高亮的颜色*/

}

2.input{

  appearance:button;

  -moz-appearance:button; /* Firefox */

  -webkit-appearance:button; /* Safari 和 Chrome */

}

相关文章

网友评论

      本文标题:ios系统下input边框有默认阴影

      本文链接:https://www.haomeiwen.com/subject/wvewvftx.html