1

当我单击名为“test”的 div 时,会出现一个名为“outside”的 div,同时也会出现一个具有更高 z-index 的名为“inside”的 div。

我的问题是,当我将位置设置为绝对“内部”时,我无法确定边距底部。当我将位置设置为相对时,它会将我的 div“测试”置于其下方。

这可能有点难以理解,但问题真的很简单。这里有一个小提琴:http: //jsfiddle.net/malamine_kebe/QRpqs/

我的CSS是:

#insideAbsolute{
    background-color:#f8f8f8;
    position: absolute;
    top:0;
    left:20%;
    width:60%;
    margin-top:35px;
    margin-bottom:35px;
    z-index:3;
    border-radius: 7px;
    box-shadow: 6px 6px 20px black; 
}

#insideRelative{
    background-color:#f8f8f8;
    position: relative;
    top:0;
    left:20%;
    width:60%;
    margin-top:35px;
    margin-bottom:35px;
    z-index:3;
    border-radius: 7px;
    box-shadow: 6px 6px 20px black; 
}


#outside{
    position: fixed;
    left:0;
    top:0;
    height: 100%;
    width: 100%;
    background-color: black;
    opacity:0.7;
    z-index:2;
    background-attachment:fixed;
}

.test{
    z-index:1;
}

我的 HTML:

<div id="outside"></div>
<div id="insideAbsolute"></div>
<div id="insideRelative"></div>

<div class="testAbsolute">test position absolute</div>
<div class="testRelative">test position relative</div>

和我的 jQuery

$('#outside').hide();
    $('#insideAbsolute').hide();
    $('#insideRelative').hide();

    $(document).on('click', '.testAbsolute', function () {
        $('#outside').show(0, function() { 
            $('#insideAbsolute').show(0, function() {
                $(this).html('<br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>');
                $(document).on('click','#outside',function(){
                    $('#insideAbsolute').html('');
                    $('#outside').hide();   
                });     
            }); 
        });

    });  

    $(document).on('click', '.testRelative', function () {
        $('#outside').show(0, function() { 
            $('#insideRelative').show(0, function() {
                $(this).html('<br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>');
                $(document).on('click','#outside',function(){
                    $('#insideRelative').html('');
                    $('#outside').hide();   
                });     
            }); 
        });

    });  
4

1 回答 1

1

这里给你一个小技巧。在你的 CSS 中添加这个:

#insideAbsolute:after{
    content:'';
    height : 35px;
    width : 100%;
    position : absolute;
    bottom : -35px;
}

这创造了一个“假”的利润!

小提琴:http: //jsfiddle.net/QRpqs/1/

于 2013-06-06T20:03:47.963 回答