Почему элементы сетки в одной строке не выравниваются по высоте одного из их братьев и сестер из той же строки?
#css #css-grid #css #css-grid Вопрос: .container { display:grid; grid-template-columns: 1fr 4fr 1fr; grid-template-rows: 50px 50px; grid-auto-flow: row; grid-gap: 2px 2px; height:100vh; padding:2px; } .grid-box { background-color: skyblue; padding: 10px 5px;…