I am struggling to figure out how to stack two divs on top of each other without utilizing Position:absolute. So far, my attempts have been unsuccessful.
Is there anyone who knows a solution for this issue? Thank you!
<div class="row" style="background-color:aqua;">
<div class="col-xs-12 col-sm-12 col-md-12">
<div style="left:0px;">
<asp:Label ID="lblEmail" runat="server" Text="Label" />
</div>
<div style="left:0px;">
<asp:Button ID="btnJoin" runat="server" Text="a button"
CssClass="btn btn-lg btn-primary"/>
</div>
</div>
</div>