HTML では、子ブロックで position:absolute css プロパティを使用すると、絶対値は親タグから取得されず、ブラウザ ウィンドウ全体から参照されます。サンプルコードを以下に示します。
CSS
.parent {
width: 400px;
height: 400px;
border: 1px solid green;
}
.child {
position: absolute;
width: 200px;
height: 200px;
border: 1px solid red;
bottom: 0px;
}