I have 2 divs, a square
and a bar
. Both are centered using auto
margin. But I want to place bar over square. How can I do this?
html
<div class="square">square</div>
<div class="bar">square</div>
css
.square,.bar{
margin-left:auto;
margin-right:auto
}
.square{
background-color:blue;
width: 100px;
height: 100px;
}
.bar{
background-color:green;
width: 400px;
height: 40px;
}
Here is the fiddle.