假设我有一个具有以下规格的容器:
.container {
width: 960px;
margin: 0 auto;
height: 500px;
}
现在在中间,我想添加 3 个水平对齐的框,其规格如下:
.box1 {
background-color: #000;
width: 300px;
height: 200px;
}
.box2 {
background-color: #999;
width: 300px;
height: 200px;
}
.box3 {
background-color: #333;
width: 300px;
height: 200px;
}
我尝试在每个上使用 margin-top 和 margin-left ,但这很混乱,而且让它们看起来与它们之间足够的排水沟同样对齐很麻烦。创建这个的最佳方法是什么?