Let's say I have this HTML page:
<body>
<p id="alice">Alice</p>
<p id="bob">Bob</p>
</body>
and this pretend CSS syntax:
p#alice:before { p#bob }
In other words, I want to override the HTML using CSS, placing the Bob element ABOVE the Alice element. Why? Because in my case I can edit the CSS, and I cannot edit the HTML.
Bob doesn't have to actually occur before Alice in the DOM, but it does need to appear ABOVE Alice visually.

#bobyou could just position#aliceabsolutely,with a top distance of#bob's height. – feeela Jan 24 at 22:40