how can i overlay the blue div over the yellow div? I tried to add a relative position to the outer div, but i doesnt work.
.c1{
padding:25px;
background: blue;
position: relative;
top: 0;
left: 0;
z-index: 10;
}
.c2{
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 1;
background: yellow;
}
<div class="container">
<div class="c1">
<div class="c2">
Hallo Welt
</div>
</div>
</div>