https://codepen.io/Chiz/pen/PoQMjmj
<div>
<div class="card">Text</div>
<div class="card">Text2</div>
</div>
div.card
{
width:200px;
height:200px;
background-color:pink;
transition:all 0.7s;
position:absolute;
}
Both of the child divs are block level elements, but when I set position:absolute to both of them without giving any values for top and left properties, both divs get stacked together in the same position.
Is this part of the CSS specs?