为什么html页面中的图像和文本也会显示在此代码的弹出窗口中?[PHTML]

问题描述 投票:0回答:1

我使用以下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>

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

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

php html css bootstrap-modal
1个回答
3
投票

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

有关更多信息,请参阅CSS z-index property

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

© www.soinside.com 2019 - 2024. All rights reserved.