ElementUI的Drawer加上滾動條

第一種:

出處:https://www.cnblogs.com/jaycethanks/p/12507203.html

<style lang="scss">
/*1.顯示滾動條:當內容超出容器的時候,可以拖動:*/
.el-drawer__body {
    overflow: auto;
    /* overflow-x: auto; */
}

/*2.隱藏滾動條,太醜了*/
.el-drawer__container ::-webkit-scrollbar{
    display: none;
}
</style>

 

第二種:

出處:https://blog.csdn.net/qq_39689605/article/details/103770641?utm_medium=distribute.pc_relevant_t0.none-task-blog-BlogCommendFromMachineLearnPai2-1.nonecase&depth_1-utm_source=distribute.pc_relevant_t0.none-task-blog-BlogCommendFromMachineLearnPai2-1.nonecase

<style lang="scss">
    .el-drawer.rtl {
        overflow: scroll
    }
</style>

 

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章