Currently, I have three Divs positioned absolutely on the page - leftDiv, middleDiv, and rightDiv. The middleDiv has a width of 900px, which is fine. However, I need the leftDiv and rightDiv to fill the remaining space on the left and right sides, regardless of the screen size.
The reason I am using absolute positioning is because it allows me to set the height to 100% and fill the entire page.
So, my question is, how can I fill the remaining parts of the page with the leftDiv and rightDiv?
As their names suggest, these divs divide the page into three distinct sections.
Thank you for your help.