blob: b4c37e4440de4156020509ef6942435d5a9e4dbb (
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
|
<!DOCTYPE html>
<style>
.columns {
-webkit-column-count: 3;
-webkit-column-rule: 2px solid black;
-webkit-column-gap: 20px;
column-count: 3;
column-rule: 2px solid black;
column-gap: 20px;
column-fill: auto;
width: 340px;
height: 100px;
padding: 20px;
border: 10px solid maroon;
margin-bottom: 1em;
line-height: 20px;
}
</style>
<div class="columns">
Column text.<br>
Column text.<br>
Column text.<br>
Column text.<br>
Column text.<br>
Column text.<br>
Column text.<br>
Column text.<br>
Column text.<br>
Column text.<br>
Column text.<br>
Column text.<br>
</div>
<div class="columns" style="direction:rtl;">
Column text.<br>
Column text.<br>
Column text.<br>
Column text.<br>
Column text.<br>
Column text.<br>
Column text.<br>
Column text.<br>
Column text.<br>
Column text.<br>
Column text.<br>
Column text.<br>
</div>
|