html – div与正常流量背后的绝对位置

前端之家收集整理的这篇文章主要介绍了html – div与正常流量背后的绝对位置前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在试图让一个div成为我的背景,并且正在使用绝对定位来实现它.一切都正常,除了它在正常流程中出现的任何东西,并且与z索引相匹配的事实绝对没有.
<div id="blind">
    <div id="blindbackground"></div>
    <div id="blindcontainer">
        <div class="loader">
            <img class='loader' src="/img/loader.gif"/>
        </div>
    </div>
    <div id="blindclosecontainer">
       <img id='blindclose' src="/img/close.gif"/>
    </div>
</div>

这是css:

#blind{
    position :absolute;
    width:100%;
    z-index: 2;
    border-bottom: 1px silver solid;
}
#blindclosecontainer{
    text-align: right;
}

#blindbackground{
    position:absolute;
    top:0;
    width:100%;
    height:100%;
    background-color: white;
    filter:alpha(opacity=60);
    opacity:0.6;
}
#blindcontainer{
    margin:auto;
    width:500px;
    background-color: white;
    padding:10px;
}

.loader{
    margin: auto;
    width:18px;
    margin-top:10px;
    margin-bottom: 5px;
}

解决方法

添加位置:亲戚到#blindcontainer和#blindclosecontainer类.
原文链接:https://www.f2er.com/html/230210.html

猜你在找的HTML相关文章