代码示例:(标识:cssref_align-items)
<!DOCTYPE html>
<html>
<head>
<style> 
#main {
  width: 220px;
  height: 300px;
  border: 1px solid black; 
  display: flex;
  align-items: center;
}

#main div {
   flex: 1;
}
</style>
</head>
<body>

<div id="main">
  <div style="background-color:coral;">红色</div>
  <div style="background-color:lightblue;">蓝色</div>  
  <div style="background-color:lightgreen;">有更多内容的绿色 div</div>
</div>

<p><b>注释:</b>Internet Explorer 10 以及更早的版本不支持 align-items 属性。</p>

</body>
</html>
运行结果: