i have two div, see plunker:
<div class="box" style="position:absolute;bottom:0px;background-color:blue">mk</div>
<div class="box" style="position:relative;top:0px;background-color:red">mk1</div>
and css:
.box{
width:200px;
height:400px;
text-align:center;
background-color:red;
}
i want to put first div in bottom of the page and second div in top of the page.positioning is working using this code.but second div(top div) wrap the first div(which is in bottom).i want that both div should show without overlapping.i don't know how is it possible.please suggest me how is it possible?