<div>
  <span>使用弹性布局达到垂直居中的效果</span>
</div>
div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 200px;
  background: black;
}

span {
  background: white;
}

External CSS

This Pen doesn't use any external CSS resources.

External JavaScript

This Pen doesn't use any external JavaScript resources.