添加一个位置为absolute的包装器
现在,您可以将最小高度设置为最左侧,最右侧的高度将遵循最小高度.
#wrap { display: flex; }
#item-1 { min-height: 100px; background: orange; flex: 1; }
#item-2 { position: relative; flex: 1; }
#item-wrap {
position: absolute;
left: 0; top: 0;
right: 0; bottom: 0;
overflow: auto;
}
If this gets longer, right most follows
If this gets longer, right most follows
If this gets longer, right most follows
If this gets longer, right most follows
If this gets longer, right most follows
If this gets longer, right most follows
If this gets longer, right most follows
If this gets longer, right most follows
I would like this text to have a scrollbar, and thus not take up more height than the orange box.
I would like this text to have a scrollbar, and thus not take up more height than the orange box.
I would like this text to have a scrollbar, and thus not take up more height than the orange box.
I would like this text to have a scrollbar, and thus not take up more height than the orange box.
I would like this text to have a scrollbar, and thus not take up more height than the orange box.
I would like this text to have a scrollbar, and thus not take up more height than the orange box.
I would like this text to have a scrollbar, and thus not take up more height than the orange box.