首页 > 编程 > JavaScript > 正文

关于element-ui的隐藏组件el-scrollbar的使用

2019-11-19 11:26:19
字体:
来源:转载
供稿:网友

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

<el-scrollbar></el-scrollbar>

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

已知内容高度

<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>

高度由内容撑开

<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>

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持武林网。

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表