<style>
body{
Height:100vh;
Width:100vw;
}
.abc{
Height:20%;
Width:100%;
Border:solid blue;
}
.def{
Height:20%;
Width:100%;
Border:solid green;
}
</style>
<body>
<div class="abc">
<input type="text">
</div>
<div class="def">
<p>Fix Me plz</p>
</div>
</body>
I want the keyboard to overlap the content, not push it up.************** When the input is made active, the keyboard pops up and pushes the content up.
Thank you.
Edit:Now know that this is caused from the viewport height being changed on Android. Still not sure on a fix.