MENU

テキストをボックスの天地中央に配置するCSS

上下中央

.box {
  display: flex;
  align-items: center;   /* 上下中央 */
}

上下左右中央

.box {
  display: flex;
  justify-content: center; /* 左右中央 */
  align-items: center;     /* 上下中央 */
}
目次