首页htmlhrHTML Element Style - 如何垂直居中HR标签

HTML Element Style - 如何垂直居中HR标签

我们想知道如何垂直居中HR标签。

<!DOCTYPE html>
<html>
<head>
<style type='text/css'>
.table {
  display: table;
  width: 100%;
  height: 100%;
  position: absolute;
}

.table-cell {
  display: table-cell;
  text-align: center;
  vertical-align: middle;
  width: auto;
  height: auto;
  z-index: 100;
}
</style>
</head>
<body>
  <div class="table">
    <div class="table-cell">
      <hr />
      <h3>Some text</h3>
      <hr />
    </div>
  </div>
</body>
</html>