是float和margin-left不可同時用嗎
.right{width:100%;height: 600px;background-color: green;margin-left: 210px;float:right}
為什么加上float:right了就不行了,效果是占據了掙了main 的寬度, 去掉就可以實現效果,
.right{width:100%;height: 600px;background-color: green;margin-left: 210px;float:right}
為什么加上float:right了就不行了,效果是占據了掙了main 的寬度, 去掉就可以實現效果,
2016-01-29
舉報
2016-01-29
float和margin-left可同時使用,只是你這里沒有必要同時使用。float:right表示整個塊向右浮動,你的塊的寬度已經是100%了就沒有必要向右浮動了,margin-left代表的是左邊界寬度,不影響float浮動。