position bottom right
HTML
<div class="p">
<div class="child">child</div>
</div>
CSS
.p{
position:relative;
width:400px;
height:400px;
background-color:#f88;
}
.child{
position:relative;
bottom:0px;
background-color:#8f8;
}