Код: Выделить всё
repeat(auto-fit, minmax(max-content, 1fr))
.container {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(370px, 1fr));
grid-gap: 8px;
}
@media (max-width: 799px) {
.container {
grid-template-columns: minmax(max-content, 1fr);
}
}
@media (min-width: 800px) {
.container .p2,
.container .p3 {
grid-column: auto / span 2;
}
}
.container > div {
background-color: gray;
text-align: center;
}< /code>
Код: Выделить всё
[img]https://via.placeholder.com/150x150[/img]
[img]https://via.placeholder.com/250x150[/img]
[img]https://via.placeholder.com/370x150[/img]
[img]https://via.placeholder.com/150x150[/img]
Подробнее здесь: https://stackoverflow.com/questions/527 ... ax-content
Мобильная версия