Vue iphone input style compatibility issues

with this hook

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

wrote the global default style of input and how to fix this tick. The old driver took me

.
Jun.27,2022

border-radius:0 try
if not, hide the border and use pseudo elements to define a horizontal line

input{
    outline:none;
    background:none;
    border:0;
}
Menu