时间:2021-07-01 10:21:17 帮助过:31人阅读
background-color
.one{
width:100px;
height:100px;
background:#cc0000;
float:left;
}
.two{
width:100px;
height:100px;
background: #0066ff;
float:left;
}
.three{
width:100px;
height:100px;
background:#66ff00;
float:left;
clear:left;
}
.four{
width:100px;
height:100px;
background:#ffff00;
float:left;
}
分号没加
而且你的background:#000000 后面缺少;号
补充一下,我将float:left跟clear:left两个指令去掉之后,就变成这样:
反正就是一定不能加float:left,一加上颜色就不见了