If you have the HTML snippet below:
...
<fieldset>
<div>above or below</div>
<div>content</div>
</fieldset>
...
Is there a way to use CSS to position the
<div>above or below</div>
above or below the <div>content</div>
without adding extra markup and without disrupting the flow of the document?
I attempted using position: relative;
on the fieldset
and then position: absolute;
on the field div, but this caused the element to overlap any elements beneath it.