CSS BFC(Block Formatting Context)

清华大佬耗费三个月吐血整理的几百G的资源,免费分享!....>>>

<style>
ul li{list-style:none;float:left;width:120px;height:600px;margin:10px;background:#0ff;}
</style>
<div style="width:400px;height:600px;background:#f00">
<ul>
<li></li>
<li></li>
<div style="overflow:hidden"><li style="overflow:hidden"></li></div>
</ul>