Код: Выделить всё
.container{
height: clamp(200px, auto, 400px);
}
Код: Выделить всё
.container{
min-height: 200px;
height: auto;
max-height: 400px;
}
Подробнее здесь: https://stackoverflow.com/questions/671 ... -value-max
Код: Выделить всё
.container{
height: clamp(200px, auto, 400px);
}
Код: Выделить всё
.container{
min-height: 200px;
height: auto;
max-height: 400px;
}