美文网首页
Element滚动条

Element滚动条

作者: 等级7 | 来源:发表于2022-07-15 11:18 被阅读0次

在Element中存在滚动条组件


729048fef1fd59cb776878aa7f0aa91.png

就是这个东西

<template>
  <div style="height:600px;">
    <el-scrollbar style="height:100%" wrap-style="overflow-x:hidden;">
        <div style="width:700px;height:700px;border:solid;" >
          ....... blabla.....
        </div>
    </el-scrollbar>
  </div></template>

注意1.当使用el-scrollbar的时间x轴会出现一个很丑的原生滚动,此时需要通过wrap-style="overflow-x:hidden;"去除
2.el-scrollbar需要放置在固定父盒子和需要滚动的子盒子之间

相关文章

网友评论

      本文标题:Element滚动条

      本文链接:https://www.haomeiwen.com/subject/yaiqirtx.html