Counter

.parent {
position:relative;
background: azure;
height: 200px;
max-height: 100%;
}

我想通过将 .in-之间设置为溢出,使 .finish 保持在 .parent 数字内>使用滚动。
答案 0 :(得分:1)
您可以像这样使用flex布局:
childrenList.stream()
.map(this::convertChildToPerson)
.forEachOrdered(personList::add);
.body {
background-color: azure;
border:1px solid;
height: 250px;
display:flex;
flex-direction:column;
}
.text {
overflow: auto;
}