My specific scenario is as follows:
<div id="container">
<p id="first">...</p>
<p id="second">...</p>
</div>
I am looking to rearrange the order of second
and first
within the HTML structure. This reordering should not affect the styling of either container
or first
, preserving the layout of other elements. The reason for this request is that the second paragraph is generated by a plugin and cannot be altered.
UPDATE: Additionally, it should be noted that using Javascript is not an option in this case.