Hi,
I would like to create a div container that automatically expands to 100% of the width and height of the content area of a standard page.
The page should still keep the header and footer - so I'm talking about the area in between.
Currently I have created a container as follows:
<div style="height: 500px; width: 100%; border:1px solid black; background: black"></div>
It will look like this:
<a href="https://ibb.co/RB94HCT"><img src="https://i.ibb.co/SdP7vKw/Current.png" alt="Current" border="0"></a>
But I want this behavior:
<a href="https://ibb.co/jhqdMLB"><img src="https://i.ibb.co/SNH2nKW/Expected.png" alt="Expected" border="0"></a>
Additionally, I want the container to increase/decrease in size when the user resizes the window.
Can anyone give me a hint on how to do this?