親切にフィドルを参照してください:http://jsfiddle.net/ukzKT/8/。
内側のdiv#this-bottomを下に残したいのですが、幅は他のdivと同じにする必要があります。つまり、親div#topのパディング領域内にとどまる必要があります。
CSS
#top{
width:300px;
position:relative;
padding:20px;
border:1px solid #222;
}
#this-bottom{
position:absolute;
bottom:0;
border:1px solid #333;
right: 18px;
left: 20px;
}
#other{
width:100%;
border:1px solid #333;
}
HTML
<div id='top'>
<div id='other'>
This is 1 <br />
THis is 2 <br />
This is 3 <br />
</div>
<div id='this-bottom'>
This should be bottom
</div>
</div>