<!DOCTYPE html>
<html>
<head>
<style>
.center {
display: flex;
justify-content: center;
align-items: center;
height: 200px;
border: 3px solid green;
}
</style>
</head>
<body>
<h2>Flexboxで中央揃え</h2>
<p>justify-contentプロパティとalign-itemsプロパティの両方が<em>center</em>に設定されたコンテナは、アイテムが(両方の軸で)中央に配置されます。</p>
<div class="center">
<p>私は垂直方向と水平方向の中心にいます。</p>
</div>
</body>
</html>