So, I admit I'm not that good at CSS, and this might be something dumb on my end, but I want to have a sticky footer at the bottom of every page on my site.
I'm using a position absolute this is the CSS for my footer
position:absolute;
bottom:0;
height:50px;
padding: 10px;
width:100%;
It works when the console is closed, but if I open the Chrome Developer tools, the footer suddenly goes up as if it were fixed to the browser window which is not the case.
Am I doing anything wrong?
How do others do sticky footers?
EDIT
I've created a simple codepen with an example of the issue
http://codepen.io/anon/pen/yMLBdJ
Open the dev tools below the footer and you'll notice the footer is still visible, shouldn't it be invisible behind the dev tools? That's the questions. sorry ahead of time if it's a dumb one.