Как мне сделать все блоки течь вокруг первого блока? Высота первого блока варьируется в зависимости от содержимого. Спасибо!.app-full{
display: grid;
grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
grid-template-rows: repeat(auto-fit, minmax(120px, 1fr));
grid-column-gap: 0px;
grid-row-gap: 0px;
grid-gap: 20px;
}
.app-full .first{
grid-area: 1 / 1 / 3 / 3;
height: auto;
}
Подробнее здесь: https://stackoverflow.com/questions/797 ... uto-height