I recently encountered a situation on one of my pages where an element positioned at the bottom using absolute positioning was causing issues when the keyboard was opened, as it would move to the middle of the page unexpectedly.
While this may seem like a standard issue,
I am looking for a solution that keeps the element fixed at the bottom
This problem has been bothering me,
.container{
position:relative;
height:100%;
}
.myclass{
position : absolute;
bottom:0;
margin:auto;
display:flex;
align-items:center;
}