3 .test { position: absolute; }
4 .pos1 { left:
50px; top:
50px;}
5 .pos2 { left:
250px; top:
50px;}
6 .pos3 { left:
50px; top:
300px;}
7 .pos4 { left:
250px; top:
300px;}
10 border:
0 solid black;
11 background-color: red;
14 -webkit-column-gap:
0;
18 background-color: green;
22 -webkit-writing-mode: horizontal-bt;
23 border-top-width:
50px;
26 -webkit-writing-mode: horizontal-tb;
27 border-bottom-width:
50px;
30 -webkit-writing-mode: vertical-rl;
31 border-left-width:
50px;
34 -webkit-writing-mode: vertical-lr;
35 border-right-width:
50px;
37 .horizontal_bt
> div, .horizontal_tb
> div {
40 .vertical_lr
> div, .vertical_rl
> div {
44 -webkit-column-break-before: always;
48 There should be four green squares below, plus a large black border on one side, as
49 indicated. There should be no red.
51 <div class=
"test pos1">
53 <div class=
"multicol horizontal_bt">
54 <div></div><div class=
"break_before"></div>
57 <div class=
"test pos2">
59 <div class=
"multicol horizontal_tb">
60 <div></div><div class=
"break_before"></div>
63 <div class=
"test pos3">
65 <div class=
"multicol vertical_rl">
66 <div></div><div class=
"break_before"></div>
69 <div class=
"test pos4">
71 <div class=
"multicol vertical_lr">
72 <div></div><div class=
"break_before"></div>