Is it possible to expand a div
element to the full width and height of the window or parent div without altering its position in the DOM using only CSS?
<div id="parent1" class="fullwidth">
<div id="parent2" class="notfullwidth">
<div style="position:absolute">mycontent</div><!-- how can I make this span the entire width of parent1 or overlay parent1? -->
</div>
</div>