I'm attempting to use CSS to make code from further down in the HTML appear above code from a section above it.
Here is how my HTML structure looks:
<div class="showbelow">
show below
</div>
<div class="showabove">
show above
</div>
I would like the content of the showabove div to display above the showbelow div, even though it appears below it in the HTML. Is there any way to achieve this without relying on negative margins in the CSS? For example, without setting a negative top margin for showabove and a positive top margin for showbelow? Both divs take up 100% of the container's width.
Thank you in advance :)