After struggling through a lengthy session of trial and error with my CSS stylesheet, followed by an even lengthier web search that yielded no solutions, I have decided to turn to this platform in the hopes that someone can offer guidance.
The issue at hand: I am attempting to create a website with a fixed header, footer, and side navigation bar. When I set the height property of the entire HTML body to 100 percent (or 100vh) and then allocate 15 percent to the header, 5 percent to the footer, and 80 percent to the content section, the height of the content area becomes disproportionately large. Although I may not possess advanced knowledge of CSS, I believe it should work as intended.
Below is the code snippet:
// CSS code block goes here...
<!doctype html>
<html lang="de">
<head>
// Head section content goes here...
</head>
<body>
// Body content goes here...
</body>
</html>
If anyone could kindly shed light on where the problem lies within this stylesheet, it would be greatly appreciated.