gpt4 book ai didi

php - 为什么在这段代码中,html页面中的图片和文字也显示在弹出窗口中?[ PHTML ]

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

我使用以下 CSS 类为按钮点击事件创建了一个弹出框。

<style type="text/css">
.overlay {
position: fixed;
top: 0;
bottom: 0;
left: 0;
right: 0;
background: rgba(0, 0, 0, 0.7);
transition: opacity 500ms;
visibility: hidden;
opacity: 0;
}
.overlay:target {
visibility: visible;
opacity: 10;
}

.popup {
margin: 70px auto;
padding: 20px;
background: #fff;
border-radius: 5px;
width: 40%;
position: relative;
transition: all 5s ease-in-out;

}

.popup h2 {
margin-top: 0;
color: #333;
font-family: Tahoma, Arial, sans-serif;
}
.popup .close {
position: absolute;
top: 20px;
right: 30px;
transition: all 200ms;
font-size: 30px;
font-weight: bold;
text-decoration: none;
color: #333;
}
.popup .close:hover {
color: #06D85F;
}
.popup .content {
max-height: 30%;
overflow: auto;
}

@media screen and (max-width: 700px){
.box{
width: 70%;
}
.popup{
width: 70%;
}
}
</style>

弹出窗口按预期工作。但是当我向下滚动弹出窗口时,不在弹出窗口区域(弹出窗口下方)的图像和文本也会显示,因为它们处于同一级别。我包括了一个我的问题的屏幕截图。任何人都可以帮助我吗?我哪里出错了?我从 Bootsnip 网站获得了这些类(class) https://bootsnipp.com/snippets/featured/ecommerce-quick-view-popup-amp-product-row

这是有问题的观点 enter image description here

最佳答案

只需将 z-index: 1 添加到 .overlay 即可。这应该可以解决此问题。

参见 CSS z-index property了解更多信息。

在这种情况下,我看不到不同的 z-index 值,但如果看到,只需增加 z-index 的数量即可。

关于php - 为什么在这段代码中,html页面中的图片和文字也显示在弹出窗口中?[ PHTML ],我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48056642/

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