I am wanting to get the input fields on Safari on the iPhone to look like this JS FIDDLE. Currently I have tried this, which does not produce what I would like:
.input
{
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
outline: none;
border:none;
border-color: transparent;
border: 0;
outline: 0;
background: transparent;
border-bottom: 1px solid grey;
width: 250px;
}
The fields look like the input in the fiddle on desktop in Safari, just not on the phone.