vue iphone input样式兼容问题

https://img.mukewang.com/5c80db880001dabf03360605.jpg

多出了这个弯钩

input {    -webkit-appearance:none; 
    -moz-appearance:none;    -ms-appearance:none;    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);    resize: none;
}

写了input的全局默认样式了 还有这个勾 咋整。。 老司机带带我


宝慕林4294392
浏览 1189回答 2
2回答

守着一只汪

border-radius:0 试下不行的话,就把border隐藏调,用伪元素去定义一条横线    input {        border: none;        position: releative;     }    input::after {        content: '';        display: block;        width: 100%;        height: 1px;        background: #000;        position: absolute;        bottom: 0;        left: 0;     }
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Vue.js