css - 在固定的div里滚动

207 阅读1分钟

起初,用到了vant中的van-sticky组件,和van-tabs中的sticky属性,会出现一个样式上的问题,就是滑动的时候会有卡的一下。sticky适用于滑动时固定,所以,如果header需要开始就固定时,就不能用到该属性,而是需要在固定的div里滚动。

父级div和子级div要设置固定的height,而不能用min-height.

.enterpriseTalk {
  @include x-padding-bottom(58px);
  height: calc(100vh - 99px);

  .van-tabs__content {
    height: calc(100vh - 99px - 44px - 50px);
    overflow: auto;
  }
}