如何使 header 的表格居中?

How to center the form respective to header?

我有一个固定的侧边导航栏。在我有一个 header 和 body-content,我希望表格相对于 header.

居中

HTML

<body>
  <div id="sideNav">
  SideNav
  </div>
  <div id="mainContent">
    <div id="header">
      <div>
        <h3>
        Header
        </h3></div>

    </div>
    <div class="body-content">
      <form id="form1">
      <h3>
      Form
      </h3>
        <div id="formset">
          <table>
            <tr>
              <td>
                <label>Login</label>
              </td>
              <td>
                <input type="text" />
              </td>
            </tr>

          </table>
        </div>

      </form>
    </div>
  </div>
</body>

CSS

* {
  margin: 0;
  padding: 0;
}

body {
  position: relative;
}

#sideNav {
  width: 150px;
  height: 100%;
  background-color: #6bc7cc;
  position: fixed;
  width: 15%;
}

#mainContent {
  background-color: Aqua;
  height: 100%;
  position: absolute;
  left: 15%;
  right: 0;
}

#header {
  width: 100%;
  height: 50px;
  background-color: #fcb;
}

.body-content {
  margin: 45px;
}

#formset {
  width: 500px;
  margin: 0 auto;
}

Fiddle Here

尝试使用它可能对您有所帮助,而不是在#formset

中设置样式
#form1{
    display: table;
    margin: 0 auto;
}

#formset{
  width:none;
  margin: 0 auto;
}

你要这个..

* {
  margin: 0;
  padding: 0;
}

body {
  position: relative;
}

#sideNav {
  width: 150px;
  height: 100%;
  background-color: #6bc7cc;
  position: fixed;
  width: 15%;
}

#mainContent {
  background-color: Aqua;
  height: 100%;
  position: absolute;
  left: 15%;
  right: 0;
}

#header {
  width: 100%;
  height: 50px;
  background-color: #fcb;
  text-align:center;
}

.body-content {
  margin: 45px;
}

#form1{
    display: table;
    margin: 0 auto;
}

#formset{
  width:none;
  margin: 0 auto;
}
<body>
  <div id="sideNav">
  SideNav
  </div>
  <div id="mainContent">
    <div id="header">
      <div>
        <h3>
        Header
        </h3></div>

    </div>
    <div class="body-content">
      <form id="form1">
      <h3>
      Form
      </h3>
        <div id="formset">
          <table>
            <tr>
              <td>
                <label>Login</label>
              </td>
              <td>
                <input type="text" />
              </td>
            </tr>
            
          </table>
        </div>

      </form>
    </div>
  </div>
</body>