CSS之Float

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>float</title>
</head>
<body>
<!--float:left 往左边飘起来 块级标签也可以堆叠
<div style="clear:both;"></div>

-->
<div style="80%; background-color:blue;float:left">1</div>
<div style="20%; background-color:yellow;float:left">2</div>
<div>2</div>
</body>
</html>
原文地址:https://www.cnblogs.com/nodchen/p/8442166.html