Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR HTML

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>
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #divs #place
ADD COMMENT
Topic
Name
9+2 =