首页htmlheaderPage Widget - 如何使用表格单元格在页眉中置中

Page Widget - 如何使用表格单元格在页眉中置中

我们想知道如何使用表格单元格在页眉中置中。

<!DOCTYPE html>
<html>
<head>
<style type='text/css'>
#header {
  width: 1062px;
  height: 326px;
  background-color: #110000;
  text-align: center;
  display: table-cell;
  vertical-align: bottom;
}

#header .container {
  width: 900px;
  height: 262px;
  background-color: #cccccc;
  color: white;
  display: inline-block;
}
</style>
</head>
<body>
  <div id="header">
    <div class="container">header</div>
  </div>
  <div id="content">
    <div class="container">content</div>
  </div>
  <div id="footer">
    <div class="container">footer</div>
  </div>
</body>
</html>