如何将div放在另一个div中

时间:2013-05-14 14:44:58

标签: html css3

我有这两个div,并希望将其中一个放在另一个中。任何帮助将不胜感激。

<div class="PicturesBackground" style="height:350px; width: 100%; background: green; border-radius:15px;">
<div class="ContentArea" style="height:80%; width:90%; background: blue; margin-top:30px"></div></div>

我尝试过使用边距和填充,它会在整个事物上添加边距/填充,而不仅仅是背景div中的ContentArea Div。

2 个答案:

答案 0 :(得分:0)

怎么样:

.ContentArea{
    margin-left: auto;
    margin-right: auto;
}

答案 1 :(得分:-1)

尝试this

margin: 30px auto;

希望这有帮助!