SOLVED - DIV absolute - based on PARENT DIV
by sebababi
HTML
<div style="position:relative;
float:left;
width:100px;
height:100px;
background:green;
text-align:right;">1st</div>
<div style="position:relative;
float:left;
width:100px;
height:100px;
background:yellow;
text-align:right;">2nd</div>
<div style="position:relative;
float:left;">
<div style="position:absolutet;
width:50px;
height:50px;
background:red;
margin-top:10px;
margin-left:20px;">3rd</div>
</div>