【问题标题】:panel is unscrollable when the mouse is on the fixed position element当鼠标在固定位置元素上时面板不可滚动
【发布时间】:2020-04-24 22:51:26
【问题描述】:

我遇到了当鼠标在固定位置元素上时页面无法滚动的问题。

如下所示,我使用固定位置创建了一个带有“abcd”的div。背景是可滚动的内容。但是,当我的鼠标位于蓝色 div 上时,我无法滚动背景。我想知道是否有办法在鼠标位于固定位置的 div 上时仍然滚动背景?

div是由

创建的
.div{
    background: aliceblue;
    position: fixed;
    overflow-y: scroll;
    z-index: 999;
}

【问题讨论】:

标签: html css


【解决方案1】:

尝试将以下属性添加到您的固定元素:

.div {
    pointer-events: none;
}

【讨论】:

    猜你喜欢
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 2019-03-22
    • 2014-04-08
    • 2019-01-13
    • 2016-11-29
    • 1970-01-01
    • 1970-01-01
    相关资源
    最近更新 更多