el-table横向滚动条,滚动后消失

el-table横向滚动条

clike 复制代码
   .is-scrolling-left::-webkit-scrollbar {
        display: block;
        width: 5px !important;竖向滚动条
        height: 5px !important;横向滚动条
        background: #051f3e !important;
    }

    ::-webkit-scrollbar-thumb {
        background: #bee5ff !important;
        border-radius: 6px !important;
    }

但是这样写,在滚动的情况下,滚动条会消失不见,下面才可以不需要 .is-scrolling-left

clike 复制代码
 ::-webkit-scrollbar {
        display: block;
        width: 5px !important;
        height: 5px !important;
        background: #051f3e !important;
    }

    ::-webkit-scrollbar-thumb {
        background: #bee5ff !important;
        border-radius: 6px !important;
    }
相关推荐
arvin_xiaoting1 小时前
OpenClaw学习总结_I_核心架构_8:SessionPruning详解
前端·chrome·学习·系统架构·ai agent·openclaw·sessionpruning
工程师老罗2 小时前
Image(图像)的用法
java·前端·javascript
swipe3 小时前
把 JavaScript 原型讲透:从 `[[Prototype]]`、`prototype` 到 `constructor` 的完整心智模型
前端·javascript·面试
问道飞鱼3 小时前
【前端知识】React 组件生命周期:从底层原理到实践场景
前端·react.js·前端框架·生命周期
CHU7290354 小时前
定制专属美丽时刻:美容预约商城小程序的贴心设计
前端·小程序
浩~~4 小时前
反射型XSS注入
前端·xss
AwesomeDevin4 小时前
AI时代,我们的任务不应沉溺于与 AI 聊天,🤔 从“对话式编程”迈向“数字软件工厂”
前端·后端·架构
harrain4 小时前
antvG2折线图和区间range标记同时绘制
前端·javascript·vue.js·antv·g2
德育处主任Pro4 小时前
从重复搭建到高效生产,RollCode的H5开发新范式
前端
蜡台5 小时前
SPA(Single Page Application) Web 应用(即单页应用)架构模式 更新
前端·架构·vue·react·spa·spa更新