class Demo extends React.Component {
state = {
list: []
}
handleAdd = () => {
const { list } = this.state;
this.setState({ list: [...list, list.length] })
}
render() {
const { list } = this.state
return (
<div className={styles.container}>
<div className={styles.top}>
<Button type="primary" onClick={this.handleAdd}>增加</Button>
</div>
<div className={styles.middle}>
{
list.map(item => <p className={styles.item}>{item}</p>)
}
</div>
<div className={styles.bottom} />
</div>
);
}
}
.container {
display: flex;
flex-direction: column;
.top {
width: 100px;
height: 100px;
background: lightcoral;
display: flex;
align-items: center;
justify-content: center;
}
.bottom {
width: 100px;
height: 100px;
background: lightblue;
}
.middle {
flex: 1;
}
.item {
width: 80px;
height: 40px;
margin: 5px;
background: lightgreen;
}
}

- 中间绿色的部分,不足高度时,就是自己的高度。
- 中间绿色部分超出高度时,有最大高度,可滚动。
- 绿色的最大高度时浏览器的高度减去顶部和底部,不同浏览器可能不同。
- 不希望通过js获取元素高度,css能否搞定?
为中间部分添加