Is there a way to get the first div in the code to appear below the second div in the code when the page is rendered, without using absolute positioning?
HTML Code:
<div id="i-want-this-below-the-other-div">This div is on the top in the source code, but I want it displayed below the following div</div>
<div id="i-want-this-on-top-of-the-other-div">This div is on the bottom of the source code, but I want it displayed above the other div</div>