隐藏

input在iphone下显示上边框解决方案

发布:2021/5/5 23:03:49作者:管理员 来源:本站 浏览次数:883

在css样式表中添加属性
方案一:

input {
    outline: none;
    -webkit-appearance: none; /*去除系统默认的样式*/
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0); /* 点击高亮的颜色*/
}

 
方案二:

input{
appearance:button;
-moz-appearance:button; /* Firefox */
-webkit-appearance:button; /* Safari 和 Chrome */
}