I want to keep a div on another div, which is linked to any site.
here is my css
.link_div a {
    float:left;
    width:80px;
    height:20px;
    background:yellow;
}
.over {
    position:absolute;
    left:0;
    top:0;
    background:red;
    width:80px;
    height:20px;
}
here is html
<div class="link_div"> <a href="#">HELLO</a> </div>
<div class="over"></div>
Is this possible to keep "Over" div on top and link should be on ?
 
     
    