这是我想要做的:我有一个包装盒.box-body
,我想更改margin-left
靠近0
左边缘的所有元素。
在我在http://jsfiddle.net/8NXMq/6/views.py
上的示例中,我想要带有和context_processors.py
to have的盒子margin-left: 0
,但其余的保持不变,我想创建额外的类并覆盖这个属性,但这不是我想要的要做,因为我不知道我将拥有的盒子数量可能是 7 个,可能是 20 个....加上如果你调整窗口的大小,一行中的盒子数量会改变。
这是CSS:
.box-body {
background: #ddd;
width: 700px;
height: 300px
}
.app-file {
position: relative;
float: left;
margin: 10px 0 0 14px;
display: inline-block;
padding: 10px 18px 10px 18px;
text-align: center;
font-size: 16px;
cursor: pointer;
background: rgba(255,255,255, 0.9);
color: rgb(68,68,68);
}