How to bring parent div front?
My html:-
<div class="main">
<div class="parent">
<div class="child"></div>
</div>
</div>
My css :-
.main{
width : 400px;
height: 400px;
background : green;
z-index: 10;
}
.parent{
width: 100px;
height: 100px;
position: relative;
background: yellow;
z-index: 5;
}
.child{
width : 200px;
height: 200px;
background: red;
z-index : -1;
}
My js fiddle : http://jsfiddle.net/gautm5154/xPvHf/