我有这两个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。
答案 0 :(得分:0)
怎么样:
.ContentArea{
margin-left: auto;
margin-right: auto;
}
答案 1 :(得分:-1)