i can't fix this error, when i open keyboard on my website (mobile), input text ( at the bottom of the page ) is totally covered or rezised, this is my code :
HTML:
.text-user{
height: 190px;
position: relative;
background-color:#ebe6d8;
overflow: hidden;
}
#messageBox {
display: block;
width: 230px;
padding: 10px;
border-radius: 20px;
border-style: inset;
border-width: 0;
outline: none;
position:fixed;
left: 180;
right: 250;
}
<div class="Main" id="main">
<div id="messages">
x
</div>
<input type="text" id="messageBox" maxlength="100" placeholder="Digita qui il tuo Messaggio"/>
<button id="send" onclick="Invio()"><i class="fa fa-paper-plane"></i></button>
</div>
the problematic field is
<input type="text" id="messageBox" maxlength="100" placeholder="Digita qui il tuo Messaggio"/>