I've created a simple text input on my website, and for what ever reason, I am unable to type into it on my phone (OnePlus One running CyanogenMod 13.1.2 - Android 6.0.1).
What happens is when I try to click on the input, the text cursor and keyboard will pop up and disappear in an instant; well before I get a chance to type anything. Only way I am able to select and type anything into it is by rapidly clicking on it until it works properly. I've tried it in Chrome and Firefox and it doesn't work in either. Works fine on desktop, the problem only pops up on my phone.
EDIT** Here is the input's markup
<div class="parent">
<input placeholder="Suburb/Postcode" type="text">
</div>
I have a sneaky suspicion that it may be from the styling so here is the css as well
.parent {
height: unset;
position: relative;
}
input {
width: 100%;
height: 100%;
position: absolute;
top: 0;
left: 0;
z-index: 5;
user-select: all;
}