blob: 1c8fffd1cd97453ffa33d3fc75fced5ca18d3adc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
<!DOCTYPE html>
<style>
.columns {
width: 400px;
height: 200px;
-webkit-column-width: 200px;
-webkit-column-gap: 0;
border: 5px solid blue;
margin-bottom: 1em;
line-height: 20px;
}
</style>
<div class="columns">
First column<br>
First column<br>
First column<br>
First column<br>
First column<br>
First column<br>
First column<br>
First column<br>
First column<br>
First column<br>
<div style="-webkit-column-break-before: always">
Second column<br>
Second column<br>
Second column<br>
Second column<br>
</div>
</div>
<div class="columns">
First column<br>
First column<br>
First column<br>
First column<br>
<div style="-webkit-column-break-before: always">
Second column<br>
Second column<br>
Second column<br>
Second column<br>
Second column<br>
Second column<br>
Second column<br>
Second column<br>
Second column<br>
Second column<br>
</div>
</div>
|