使用elementUi的滚动条(el-scrollbar)

(1)设置 外层容器和滚动条 的高度

(2)通过深度选择器(>>>),隐藏水平滚动条

<div class="PaChong-box" style="height:500px;">
    <el-scrollbar id="scrollbar" style="height:100%">
        <div v-html="PaChongBoxHtml"></div>
    </el-scrollbar>
</div>


<style scoped>
#scrollbar >>> .el-scrollbar__wrap{
    overflow-x: hidden;
}
</style>

猜你喜欢

转载自blog.csdn.net/u013595395/article/details/102929794