<!DOCTYPE html>
<html>
<head>
<style>
.flex-container {
display: flex;
height: 200px;
align-items: stretch;
background-color: DodgerBlue;
}
.flex-container > div {
background-color: #f1f1f1;
width: 100px;
margin: 10px;
text-align: center;
line-height: 75px;
font-size: 30px;
}
</style>
</head>
<body>
<h1>align-itemsプロパティ</h1>
<p>"align-items: stretch;" コンテナを満たすようにフレックス項目を引き伸ばします(これがデフォルトです)。</p>