I have 4 main sections on my website. Each one of them has width and height set to 100% using
width:100%;
height:100%;
position:relative;
The problem is in the 3rd section where there is a responsive table which is obviously changing its height. As long as it changes its height, half of the content isn't visible because it's covered by the 4th section. I tried to use
overflow:auto
which didn't work. Is there any way to make contents height 100% yet let it auto adjust its height afterwards?
I even tried to use
height:auto
but the result was that the 3rd section disappeared completely.