gpt4 book ai didi

css - 如何避免Div 与Canvas 重叠呢?

转载 作者:太空宇宙 更新时间:2023-11-04 00:35:09 25 4
gpt4 key购买 nike

我的 DIV 1 导致与 CANVAS 重叠,导致不可拖动和不可点击其中的对象。
如何“隐藏”DIV 1 的区域?

enter image description here

编辑:这是一些代码:

.DIV1 {
align-items: flex-end;
justify-content: flex-end;
flex-direction: row;
display: flex;
}

.PARENT of DIV1 {
position: absolute;
bottom: 0;
right: 0;
width: 100%;
}

.CANVAS {
width: 100%;
height: 100%;
}

.PARENT of everything {
width: 100%;
height: 100%;
justify-content: center;
display: flex;
}

最佳答案

您始终可以使用 pointer-events 来获得所需的结果。

.DIV1 {
pointer-events: none;
}

.DIV1 .child-that-need-pointer-events {
pointer-events: all;
}

关于css - 如何避免Div 与Canvas 重叠呢?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59648940/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com