I'm trying to position an absolute div in the bottom right corner of a page.
.absolute{
position: absolute;
right:0;
bottom: 0;
}
While this code works, I've noticed that when scrolling the page, the right/bottom position is relative to the visible window area rather than the entire body width/height.
body{
min-height: 600px;
min-width: 600px;
}
To address this issue, one solution would be to add a wrapping div with styles position:relative, width: 100%;
, but this may compromise the desired bottom positioning.
This is the final result I am striving for: