I recently came across a problem in a footer for a project of mine. The footer in the case should be at the bottom of the page ( bottom: 0;
), so far so good, it gets normal.
The problem is that when I enter the site through my mobile browser, when trying to fill in the inputs of the page registration form, the mobile phone's keyboard appears normal but the footer, instead staying at the bottom of the page ends up above the keyboard.
I know the problem is that I'm using bottom: 0;
, but I did not find any way to solve it, and I'd like someone to help me find a solution or a tip to solve it. Thanks!
Follow footer code:
footer {
width: 100%;
height: 60px;
position: absolute;
bottom: 0;
}