display two divs in same line code example
Example: 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>