My current setup includes:
html, body {
height: 100%;
}
section {
width: 100%;
height: 100%;
}
However, I have noticed that any content appearing below the .full class is not being included within the body tag. Is there a way to address this issue or is it not a major concern?
I've attempted adjusting the overflow value and changing the height to auto, but unfortunately, nothing has worked so far.
<body>
<section class="full">
<div class="center"></div>
</section> <!-- Everything below here appears outside <body> -->
<section class="main">
<header>
<!-- Nav goes here -->
</header>
<content>
<!-- Main divs are here -->
</content>
</section>
</body>