我想将 a<div>
放入另一个并希望将其居中。我的方法是这样的:
<div id="redthing">
<div id="whitebox" >
</div>
</div>
.css - 代码如下:
#redthing {
margin-top: 2px;
background-color: #f00d28;
height: 250px;
}
#whitebox {
margin: 0 auto;
margin-top: 10px;
padding-top: 20px;
height: 10px;
width: 400px;
background-color: white;
border:5px solid #000;
}
如您所见,填充和边距无法将其置于页面中间(这意味着 .whitebox
的顶部和底部之间存在相同的位置redbox
。请帮助