试图将固定宽度的容器放入 full-width (100%) parent?

Trying to fit a fixed width container into a full-width (100%) parent?

所以我是编码新手,我正在尝试创建一个网站,其中包含一些 full-width (100%) 容器,其中包含 fix-width 容器...我试过玩数字和 div 一样,但都不起作用。

这是网站模型的图像:

这是我目前的代码:

HTML:

<div id="wrapper">
<header>

    <div class="header">

    .logo
    .searchbar
    .phone numbers insert

    </div> <!--closes header div-->

</header>
<div class="navband">
<nav>
    <ul class="nav">
        <li><a href="#">Engineered Integrated Solutions</a></li>
        <li><a href="#">About</a></li>
        <li><a href="#">Clients</a></li>
        <li><a href="#">Contact</a></li>
        <li><a href="#">Employment</a></li>
    </ul>
</nav>

</div> <!--closes navband div-->
<div class="content">

    <h2>Header</h2>
    <p>Content Here</p>

</div> <!--closes content div-->

CSS:

#wrapper {
    width: 950px;
    margin: 0 auto;
}

header {
    width: 100%;
    height: 175px;
    background-color: #ff8400;
}

#nav {
margin-top: 280px;
width: 100%;
}

.nav {
    list-style: none;
    margin: 0;
    text-align: left;
    background-color: #08172d;
    padding: 5px 0;
}
.nav li{
    display:inline;
}
.nav a{
    display:inline-block;
    padding:10px;
    color: #fff;
    font-family: arial;
    font-weight: bold;
    text-decoration: none;
}
.nav a:hover{
    display:inline-block;
    padding:10px;
    color: #ff8400;
    font-family: arial;
    font-weight: bold;
}

上面的代码显示了固定宽度的布局(而它后面的整个 body 仍然是白色的),但我不知道如何包含单独的 full-width parent div header、导航栏和内容区域,而没有完全忽略包装器 (fix-width),这就是我使用图形方法时发生的事情……有什么想法吗?

你应该使用 max-width 属性

The max-width property is used to set the maximum width of an element. This prevents the value of the width property from becoming larger than max-width. Note: The value of the max-width property overrides width.

成为

.parent{
  width: 100%;
}
.child{
  padding: 25px 0;
  margin: 0 auto;
  max-width: 540px;
}