.grid {
display: -ms-grid;
display: grid;
// указываем количество колонок (в данном случае 3) по 200px
-ms-grid-columns: 200px 300px 200px;
grid-template-columns: 200px 300px 200px;
// указываем 2 строки по 100px
-ms-grid-rows: 200px 300px 200px;
grid-template-rows: 200px 100px 100px;
// Для оставшихся элементов, не включенных в столбцы и строки:
grid-auto-rows: 50px;
background-color: lightgray;
div {
background-color: #1b67a8;
border: 1px solid #212941;
border-radius: 5px;
padding: 8px 15px;
color: #ffffff;
font-size: 18px;
&:nth-child(odd) {
background-color: #1ac66c;
}
}
}