css:
.page {
width: 100%;
overflow-y: scroll;
display: flex;
flex-direction: column;
height: 100vh;
}
.top {
flex: 1;
/* // 关键, 超出部分滚动 */
overflow-y: scroll;
}
.footer {
width: 343px;
line-height: 44px;
background: #ff5446;
margin: 0 auto;
font-size: 17px;
color: #fff;
text-align: center;
flex: 0;
}
2. header footer固定 中间滑动
html
css
.wrap {
display: flex;
flex-direction: column;
width: 100%;
height: 100vh;
}
.header,
.footer {
height: 40px;
line-height: 40px;
background-color: #D8D8D8;
text-align: center;
}
.main {
flex: 1;
width: 100%;
overflow: scroll;
}
头部固定:
使用vant van-sticky
手机扫一扫
移动阅读更方便
你可能感兴趣的文章