I have a bunch of blocks I'm floating left. They're of varying heights; some short, some tall.
Now, these blocks are dynamically generated, so there's no predicting how tall each block will be (or how many there'll be). Needs to be flexible, though, so if those blocks don't all fit one one row, well, I need a second row.
Problem: since the blocks are of varying height, any block that spills over onto the next row gets "nestled" among the existing floats: 
I need the spillover-blocks to form their own row: 
I know this is proper behavior (floats favor higher positions over left-er positions), but what's the best solution for this? I can change the HTML structure (and obviously any CSS), but I can't hardcode in a clear: left.