简体   繁体   中英

panel is unscrollable when the mouse is on the fixed position element

I meet a problem that the page is uncrollable when the mouse is on the fixed position element.

As shown below, I created a div with "abcd" using fixed position. The background is a scrollable content. However, when my mouse is at the blue div, I can't scroll the background. I am wondering if there is a way to still scroll the background while the mouse is on the fix positioned div?

在此处输入图像描述

The div is created by

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

Try adding the following property to your fixed element:

.div {
    pointer-events: none;
}

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM