css中float属性的影响
程序员文章站
2022-04-25 11:20:23
...
一
<div style="width: 400px;background: gray;" id="">
<div style="width: 100px;height: 100px;background: black;" id="">
</div>
</div>
二
<div style="width: 400px;background: gray;" id="">
<div style="float:left;width: 100px;height: 100px;background: black;" id="">
</div>
</div>
三
<div style="float:left;width: 400px;background: gray;" id="">
<div style="float:left;width: 100px;height: 100px;background: black;" id="">
</div>
</div>
上一篇: html(css+盒模型)-day02