element ui——滚动条置顶

问题:

  使用  overflow-y: auto;添加滚动条后想要将滚动条回到顶部

解决办法

<el-row>
      <el-col id="rightDocument" class="scrollBar"></el-col>
</el-row>



.scrollBar {
  height: calc(100vh - 300px);
  overflow-y: auto;
}



// 退回顶部
document.getElementById('rightDocument').scrollTop = 0;

  

posted @ 2021-12-20 16:18  假装空白  阅读(693)  评论(0)    收藏  举报