Tall or Wide?

whether the viewport is portrait or landscape

@media (orientation: portrait) {
  .gallery { grid-auto-flow: row; }
}

@media (orientation: landscape) {
  .gallery { grid-auto-flow: column; }
}