I need to layer 3 div inside a container div and have them all on top of each other. How do I go about this?
this is the html:
<div class="outer">
<div class="top"></div>
<div class="middle"><span class="inside-middle"></span></div>
<div class="bottom"></div>
</div>
.outer is the container and .top, .middle and .bottom are all on top of eachother and are all the same height and width.
.inside-middle with have text in it aligned to the right.
Any advice is much appreciated.
Here’s an easier to read edit. Colored borders added for your convenience…