我使用 'section' 元素作为 'header' 元素中的容器。
容器没有以任何方式显示。
HTML
<!-- start pagewrap -->
<div id="pagewrap">
<!-- start header -->
<header>
<section id="container">
</section>
</header>
<!-- end header -->
</div>
<!-- end pagewrap -->
CSS
header {
position: absolute;
left: 0px;
width: 100%;
height: 65px;
background-color: #F9F9F9;
border-bottom: thin solid #C6D9F1;
margin: 10px 0 10px 0;
}
header section #container {
width: 900px;
height: 30px;
border: thin dotted black;
margin: 0 auto;
}