if my first div is 'postion:absolute' will by 2nd div inherited that?
<div class="positionab">test 1 </div>
<div class="secondiv"> test 2 </div>
.postionab{
position: absolute;
left:0px;
}
when test 2 is rendered on screen it is position on the most upper left .. why is it like that?