DIV继续向下移动直到最大高度

时间:2018-02-27 18:45:51

标签: html css



Counter

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




我想通过将 .in-之间设置为溢出,使 .finish 保持在 .parent 数字内>使用滚动

1 个答案:

答案 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;
}