私は使用しています:
html, body {
height: 100%;
}
section {
width: 100%;
height: 100%;
}
また、.full の下に表示されるすべてのコンテンツが body タグに含まれていないようですが、これを修正する方法はありますか? それとも、このままでも構わないのでしょうか。
オーバーフロー値を変更して高さを自動に変更しようとしましたが、何も機能しないようです。
<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>