首页htmlheaderPage Widget - 如何将一个H1标记放在DIV中

Page Widget - 如何将一个H1标记放在DIV中

我们想知道如何将一个H1标记放在DIV中。

<!DOCTYPE html>
<html>
<head>
<style type='text/css'>
#AlertDiv {
  top: 50%;
  left: 50%;
  width: 62px;
  height: 50px;
  color: white;
  position: absolute;
  text-align: center;
  background-color: black;
  margin: -25px 0 0 -31px;
}

#AlertDiv h1 {
  margin: auto;
  line-height: 50px;
  vertical-align: middle;
}
</style>
</head>
<body>
  <div id="AlertDiv">
    <h1>Yes</h1>
  </div>
</body>
</html>