在右上方的this page上,我们可以看到我创建的按钮“立即提问”。我设置了背景颜色,背景图像和较高的Z索引,但是下面的文本仍在通过其中流血。

如何停止呢?我不知道如何解决这个问题,甚至不知道为什么会这样。

 <div class="clearfix grpelem" id="u181-4"><!-- content -->
<style>
    #ContactButton {
        margin-bottom: 5px;
    }

    #ContactButtonContainer {
        margin-top: -50px;
        position: relative;
    }

    #ContactFormContainer {
        width: 250px;
        height: 160px;
        border: 1px solid black;
        position: absolute;
        top: -5px;
        left: -52px;
        z-index: 1001;
        background-color: #fff;
        background-image: url("images/formbg.jpg");
        background-repeat: repeat;
    }
</style>
<script>
    function ToggleContactFormContainer() {
        var FormContainer = document.getElementById("ContactFormContainer");

        if(FormContainer.style.display == "none") {
            FormContainer.style.display = "block";
        }
        else {
            FormContainer.style.display = "none";
        }
    }
</script>
  <p id="ContactButtonContainer"><img src="images/ContactButton.jpg" id="ContactButton" onclick="ToggleContactFormContainer()"><br><b>CALL US TODAY (219) 221-6500</b>&nbsp;&nbsp;</p>
  <div id="ContactFormContainer" style="display: none;">
    Test
  </div>
 </div>

最佳答案

问题是#u181-4元素的z索引为6,并且接触形式在其中。限制了表单相对于整个页面的z顺序。

除非#u181-4需要具有z-index,否则将其保留为auto即可正常工作。

关于html - Div底下的内容流血了吗?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/26042941/

10-09 01:32