Why does the div with class .lower
not move to the bottom of the page when the screen is resized? Could this be because of its CSS property position:absolute;
?
Check out the code snippet here.
#lower {
width: 100%;
position: absolute;
bottom: 0;
}
https://i.sstatic.net/TnqhI.jpg
UPDATE: Tried adding position:fixed;
but text ends up being layered on top of each other. See image: