Grid

grid-template

grid-template: <rows> / <columns>

CSS
.container {
  display: grid;
  grid-template: repeat(3, 1fr) / repeat(4, 1fr);
}
Box-1
Box-2
Box-3
Box-4
Box-5
Box-6
Box-7
Box-8
Box-9