blob: fc5de7bda8541756dbfcb392a875aa2ae686525b (
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
|
<style>
div.test {
-webkit-logical-width: 100px;
-webkit-border-before: 5px solid;
-webkit-border-after: 15px solid;
-webkit-column-count: 2;
-webkit-column-gap: 0;
column-count: 2;
column-gap: 0;
column-fill: auto;
background-color: lightblue;
}
div.container {
-webkit-logical-height: 120px;
background-color: red;
-webkit-logical-width: 100px;
-webkit-margin-after: 8px;
}
</style>
<div>
<div class="container">
<div class="test" style="-webkit-logical-height: 100px;">
<div style="-webkit-logical-height: 20px;">
<div style="-webkit-logical-height: 300px; background-color: yellow;"></div>
</div>
</div>
</div>
<div class="container">
<div class="test">
<div style="-webkit-logical-height: 20px;">
<div style="-webkit-logical-height: 200px; background-color: yellow;"></div>
</div>
</div>
</div>
<div class="container">
<div class="test">
<div style="-webkit-logical-height: 10px;"></div>
<div style="-webkit-column-break-before: always; -webkit-logical-height: 10px;">
<div style="-webkit-logical-height: 100px; background-color: yellow;"></div>
</div>
<div style="-webkit-logical-height: 20px;"></div>
</div>
</div>
</div>
<div style="-webkit-writing-mode: vertical-rl;">
<div class="container">
<div class="test" style="-webkit-logical-height: 100px;">
<div style="-webkit-logical-height: 20px;">
<div style="-webkit-logical-height: 300px; background-color: yellow;"></div>
</div>
</div>
</div>
<div class="container">
<div class="test">
<div style="-webkit-logical-height: 20px;">
<div style="-webkit-logical-height: 200px; background-color: yellow;"></div>
</div>
</div>
</div>
<div class="container">
<div class="test">
<div style="-webkit-logical-height: 10px;"></div>
<div style="-webkit-column-break-before: always; -webkit-logical-height: 10px;">
<div style="-webkit-logical-height: 100px; background-color: yellow;"></div>
</div>
<div style="-webkit-logical-height: 20px;"></div>
</div>
</div>
</div>
|