I've attempted the following to solve my issue:
body {height: 100%;overflow: auto; body #cornerImage {position: absolute;bottom: 0;}
I also tried this solution:
{ margin:0; padding:0; }
html, body {
height: 100%;
overflow:auto;
}
body #fixedElement {
position:fixed !important;
position: absolute; /*ie6 and above*/
bottom: 0;
}
Unfortunately, both of these methods have failed. It appears that while the desired positioning is achieved, there seems to be a large margin causing my content to shift downwards. Do I need to explore alternative solutions for fixing this issue?