gpt4 book ai didi

css - 指针事件 : none on li not working on edge?

转载 作者:太空宇宙 更新时间:2023-11-03 20:28:59 26 4
gpt4 key购买 nike

我正在 IE Edge 上进行测试。这是我的 CSS 代码:

li.inactive{
pointer-events: none;
background: #ccc;
-webkit-filter: none;
filter:none;
opacity: 1;
cursor: not-allowed;
h1{
background: #eee;
color: #ccc;
span{
color: #ccc;
}
i{
color: #ccc;
}
}
h1:after{
border-color: transparent transparent transparent #eee;

}
}

在 chrome 上可以正常工作,但在我可以将鼠标悬停在 h1 上并单击 li。有什么建议我该如何解决?

最佳答案

pointer-event 不适用于 IE11 和 Edge 中的链接,除非显示设置为 blockinline-blockSource

一个 li-item 既不是 display:block; 也不是 display:inline-block;,除非它被指定,所以要解决这个问题,试试这个:

li.inactive{
display:block;
pointer-events: none;
background: #ccc;
-webkit-filter: none;
filter:none;
opacity: 1;
cursor: not-allowed;
h1{
background: #eee;
color: #ccc;
span{
color: #ccc;
}
i{
color: #ccc;
}
}
h1:after{
border-color: transparent transparent transparent #eee;

}
}

关于css - 指针事件 : none on li not working on edge?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46931925/

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