删除iOS输入阴影

删除iOS输入阴影,第1张

删除iOS输入阴影

您需要使用

-webkit-appearance:none;
覆盖默认的IOS样式。但是,仅选择
input
CSS中的标记不会覆盖默认的IOS样式,因为IOS使用属性选择器添加了它的样式
input[type=text]
。因此,您的CSS将需要使用属性选择器来覆盖已预设的默认IOS
CSS样式。

尝试这个:

input[type=text] {           -webkit-appearance: none;    -moz-appearance: none;    appearance: none;        border-radius: 15px;    border: 1px dashed #BBB;    padding: 10px;    line-height: 20px;    text-align: center;    background: transparent;    outline: none;    }


欢迎分享,转载请注明来源:内存溢出

原文地址: https://outofmemory.cn/zaji/5641350.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-16
下一篇 2022-12-16

发表评论

登录后才能评论

评论列表(0条)

保存