Код: Выделить всё
.parent {
display: flex
}
.child {
display: flex;
flex-direction: column;
justify-content: space-between;
}
.left {
background: lightblue;
height: 200vh;
}
.right {
background: lightcoral;
height: 120vh;
}Код: Выделить всё
Top
Bottom
Top
Bottom
После некоторых возни я могу добиться только полной противоположности того, чего пытаюсь достичь:
Код: Выделить всё
.parent {
display: flex
}
.child {
display: flex;
flex-direction: column;
justify-content: space-between;
}
.left {
background: lightblue;
height: 200vh;
}
.right {
background: lightcoral;
height: 120vh;
position: sticky;
top: 0;
}Код: Выделить всё
Top
Bottom
Top
Bottom
Будем благодарны за любую помощь.
Подробнее здесь: https://stackoverflow.com/questions/777 ... -the-other
Мобильная версия