根据www1:
“ float
属性可以具有以下值之一:
left
-元素浮动在其container
的左侧”
以及“在HTML中,容器是由开始和结束标记包围的区域。”({www2)
在以下代码中(1中的代码):
.div1 {
float: left;
width: 100px;
height: 50px;
margin: 10px;
border: 3px solid #73AD21;
}
.div2 {
border: 1px solid red;
}
<body>
<h2>Without clear</h2>
<div class="div1">div1</div>
<div class="div2">div2 - Notice that div2 is after div1 in the HTML code. However, since div1 floats to the left, the text in div2 flows around div1.</div>
</body>
问题是:
div1
的容器吗? div1
浮动到
剩下。而且我猜想它结束了float的功能。为什么文字
div2
中的流在div1
周围流动?