6 border:
3px solid black;
7 -webkit-column-gap:
10px;
8 -webkit-column-count:
3;
15 box-sizing: border-box;
17 .left { float: left; }
18 .right { float: right; }
19 .tall { height:
220px; }
20 .xtall { height:
420px; }
21 .blue1 { background-color: skyblue; }
22 .blue2 { background-color: dodgerblue; }
23 .blue3 { background-color: steelblue; }
26 <p>There should be three tall floats, each of which should extend
27 into the next column (F2, F3) or into all columns (F1).
</p>
28 <div class=
"multicol">
31 <div class=
"right tall blue1">F2
</div>
34 <div class=
"left xtall blue2">F1
</div>
44 <div class=
"left tall blue3">F3
</div>