关于element-ui 的隐藏组件el-scrolbar

虽然在官方文档中没有给出这个组件,但是在源码中是有的。所以我们可以直接使用:

1
<el-scrollbar></el-scrollbar>

但是我们需要微调一下样式,两种情况的演示代码如下:

  • 已知内容高度
1
2
3
4
5
6
7
8
9
10
11
<div style='height:800px'>
<el-scrollbar class='page-component__scroll'></el-scrollbar>
<div>
<style>
.page-component__scroll{
height: 100%;
}
.page-component__scroll .el-scrollbar__wrap {
overflow-x: auto;
}
<style>
  • 高度由内容撑开
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<html>
<body>
<div style='height:100%'>
<el-scrollbar class='page-component__scroll'></el-scrollbar>
<div>
</body>
</html>

<style>
html,body{
height:100%
overflow:hidden; /*有效防止在页面进行手动刷新时显示内置滚动条*/
}
.page-component__scroll{
height: 100%;
}
.page-component__scroll .el-scrollbar__wrap {
overflow-x: auto;
}
<style>
文章作者: Gorkys
文章链接: http://tingtas.com/posts/afcee591/
版权声明: 本博客所有文章除特别声明外,均采用 CC BY-NC-SA 4.0 许可协议。转载请注明来自 Tingtas
打赏
  • 微信
  • 支付宝

评论