将<div>放在另一个<div> </div> </div>上

时间:2015-03-14 15:44:51

标签: html css

我希望包含内容持有者的div部分覆盖包含构建图像的div。

<div style=" background-position: -23px; height: 247px; background-image: url('/6.jpg'); background-repeat: no-repeat; "></div>
<div style=" min-height: 450px; width:100%;" align="center" >
<div style=" width:85%; margin-top:200 ">
        <asp:ContentPlaceHolder ID="ContentPlaceHolder1" runat="server">

        </asp:ContentPlaceHolder>

</div>
</div>

2 个答案:

答案 0 :(得分:0)

我用这个......

#overlay {
 position: fixed;
 left: 0;
 right: 0;
 top: 0;
 bottom: 0;
 background-color: #333333;
 //Cross-browser opacity below
 -moz-opacity:.80;
 filter:alpha(opacity=80);
 opacity:.80;
 z-index: 10000000;
}

答案 1 :(得分:0)

我对我想要移动的内容使用 position:absolute; 标记:

#contentholder{
position: absolute;
margin-left: 100px
margin-top: 200px
}

但要使边距与您希望该内容的位置相关。