Answers for "two divs in the same place"

0

two divs in the same place

<div class='wrapper'>
   <div class='firstDiv'></div>
   <div class='secondDiv'></div>
</div>
<style>
.wrapper{
  position: relative;
}

.firstDiv, .secondDiv{
  position: absolute;
}
</style>
Posted by: Guest on April-26-2021

Code answers related to "two divs in the same place"

Browse Popular Code Answers by Language