Currently, I am faced with the following scenario:
<div id=area>
<div id=box>
</div>
</div>
<div id=footer>
</div>
The "area" div is situated in the center and has a width of 700px with shadows on both the right and left sides. Inside this div, there is another div called box which spans 500px in width and contains text and various options. Additionally, at the bottom of the layout, there is a footer containing a single line of text.
Currently, the shadow effect on the "area" div ends where the box ends. However, on the next page where there is around 2000px worth of text within the same box, the "area" div's shadow displays correctly.
My desired outcome is to have the "area" div expand to fill the entire screen size, dynamically adjusting if more text is added inside it.