I have created 25 boxes of random width and height, where width == height
(as shown)
$(document).ready(function(e) {
for (var count = 0; count < 5; count++) {
for (var iter = 0; iter < 5; iter++) {
$(".content").append("<div id='" + count + "_" + iter + "' class='box'><p>" + count + "_" + iter + "</p></div>");
$(".content div:last").width(Math.round((Math.random() * 100) + 50));
$(".content div:last").height($(".content div:last").width());
}
}
});
.box {
background: #FF0004;
margin: 10px;
float: left;
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<body>
<div class="content">
</div>
</body>
I am trying to better understand the float property logic and the reasoning behind the positioning of floating elements when they "stack" on each other. for instance (screenshots taken from fiddle):
What makes 3_3 relocate to the position as shown below when the screen is made bigger?
According to W3Schools:
If you place several floating elements after each other, they will float next to each other if there is room.
So the question is, what does "room" mean and what is the logic which governs the location of floated elements?
The answer to this SO post: CSS Float explanation appears relevant, however it doesn't seem to explain why a floated element stops at a certain location.
Here's the part of the linked answer that's most relevant to your question:
As the author mentions this is a crude simplification. Section 9.5.1 of the spec has a list of all the precise rules, but I'm not going to quote the entire thing here as it is a very long read and only certain points are relevant here. I'll quote the relevant points as I step through exactly what is happening in your fiddle.
Compare your two screenshots. Pay attention to the two boxes that have changed positions, 3_2 and 3_3, as well as their surrounding boxes, 2_4, 3_0 and 3_1.
Before
After
When the screen is made bigger, you make room for 3_2 to move from its original position next to 2_4, upward and next to 3_1:
This in turn makes room for the next floating box to occupy the space as far up top and as far to the left as possible, following the same rule as above. As a result, 3_3 floats up, stopping just shy of 3_2, then it floats as far to the left as possible along the horizontal axis, stopping just shy of 2_4. Notice that even though it seems like 3_3 should be able to fit between 2_4 and 3_2, it does not, because the margins have to be respected (this is what is meant by "outer edge" above).
At this point, the following items apply, in addition to items #8 and #9 above:
As 3_3 is so large, it creates a noticeable downward protrusion from the first line of floating boxes. This effectively increases the height of the first line. All the other floating elements following 3_3 must remain on their own line, and this second line of floats must not intersect the bottom margin edge of 3_3. This is mostly governed by item #5.