0
I created a page where there will be a footer that should be fixed at the bottom of the page, when the page is started it has a total size and the footer works normally at the beginning:
But I have on this same page a button that displays a container that initially comes as Hiden, but when you click this button and the container is displayed the footer is no longer at the bottom of the page correctly, it ends up like this:
OBSERVING: The footer would be the blue line in the case
My CSS is like this:
.myCSS{
background-color: #036;
font-size: 14px;
float:left;
color: #FFF;
position:absolute;
bottom:0;
margin-bottom: 0px;
line-height: 5px;
}
there is some way to keep the footer fixed at the bottom of the screen independent of the page increase the size?
Please edit and put the HTML together.
– Stéfano
I solved the problem, is that it was out of the main container, for that reason the new data ended up overlapping it, but thanks for the help
– R.Santos
Show, I had made the code. Maybe someone else needs in the future.
– Stéfano