jQueryを使用してその高さを超えてスクロールするときに、ボックスの下部が利用可能なスペースの下部に配置されるように、緑色のボックスを配置するにはどうすればよいですか?
<div class="content">
<div class="left">
</div>
<div class="right">
</div>
</div>
.content { width: 400px; position: relative; height: 200px; overflow-y: auto; overflow-x: hidden; border: 1px solid gray; }
.left { position: absolute; left: 0; width: 200px; background: red; height: 400px; }
.right { position: absolute; right: 0; width: 200px; height: 100px; background: green; }
$('.content').scroll(function(){
//how to position green box so the bottom of the box
//is aligned to bottom of space available
});