position bottom right

by Laurens Maneschijn

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;
}