我在用着:
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>