div中的嵌套div不会覆盖

时间:2014-01-05 21:42:19

标签: javascript jquery css html

我有一些嵌套的div,一个外部的,然后是一个页面包装器,然后是页面包装器中的两个div。生成并添加到页面包装器中的两个div。如果2个div具有相同的顶部和左侧值,则div不会超过一圈,而是包裹在前一个div之下。  附件是我到目前为止的代码。我需要页面包装器中的2个div不能像它那样包装。

<link rel="stylesheet" href="http://code.jquery.com/ui/1.10.3/themes/smoothness/jquery-ui.css">
<script src="http://code.jquery.com/jquery-1.9.1.js"></script>
<script src="http://code.jquery.com/ui/1.10.3/jquery-ui.js"></script>
<link rel="stylesheet" href="/resources/demos/style.css">
<style>
 .outer-container
            {
                overflow:auto;
                height:900px;
                width: 900px;
                border:1px solid black;
                background-color:yellow;
                padding:5px;

            }
#page-wrapper { width: 800px; height:700px; border:2px solid #ccc; padding: 0px; background-color:white; position:relative }

</style>

<div class="outer-container">
    <div id="page-wrapper" >
    </div>
</div>

<script>
    classvalue = "draggable ui-widget-content divimage";
    idvalue= "div1";
    thisdiv = '<div style="height:100;width:100;background-color:blue;top:1;left:1;z-index:0;margin:0px" id="'+idvalue+'" class="'+classvalue+'"></div>';
    $('#page-wrapper').append(thisdiv);
    idvalue= "div2"
thisdiv2 = '<div style="height:100;width:100;background-color:teal;top:2;left:2;z-index:1" id="'+idvalue+'" class="'+classvalue+'"></div>';
    $('#page-wrapper').append(thisdiv2);
</script>

1 个答案:

答案 0 :(得分:0)

如果我理解正确你想要2个生成的div重叠?只需将position:absolute;添加到这些div。

并且不要忘记将单位(px)放在你的上/左/宽度/ ......