Can we utilize CSS/HTML to visually move a full width element that is positioned below another one so that it appears above without altering the markup order?
<div id="first">first</div>
<div id="second">second</div>
#first {…}
#second {…}
Expected outcome:
second first