1. 实现代码
// scss
// 最外层父容器
.express-detail {
display: flex;
flex-direction: row;
}
// 中间层
.part-two {
display: flex;
justify-content: stretch; // 使充满父容器高度
position: relative;
}
// 最内层子容器
.part-line {
position: absolute;
top: 25px; // 使填满父容器剩余高度
bottom: 0; // 使填满父容器剩余高度
width: 1px;
background: #dddddd;
}
2. 需求分析
(1)目前内容如图:
(2)需求是实现这样: