为什么我给content 加了 margin-right:-32px 没有起作用呢,怎么解决
//清除浮动
.clearfix{
&:after{
content:"";
display: block;
clear: both;
}
zoom:1;
}
.fl(@fl:left){
float:@fl;
}
.box{
@box_w:616px;
width:@box_w;
background-color: green;
margin-right:-32px;
.item{
@h:164px;
@w:130px;
@mr:32px;
.fl();
color:black;
height: @h;
width:@w;
text-align: center;
margin-right: @mr;
background-color: blue;
}