blob: a909f2e157bd736fd1f4b180e96780e316b9d2ae (
plain) (
blame)
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
|
<!DOCTYPE html>
<div style="display: flex; width: 2ch">
<div>
<div style="background-color: blue">
<div style="width: 10ch"></div>
</div>
</div>
<div>first</div>
</div>
<div style="display: flex; width: 2ch">
<div>
<div style="background-color: blue">
<div style="min-width: 10ch"></div>
</div>
</div>
<div>second</div>
</div>
<div style="display: flex; width: 2ch">
<div>
<div style="background-color: blue; min-width: 1ch">
<div style="width: 10ch"></div>
</div>
</div>
<div>third</div>
</div>
<div style="display: flex; width: 2ch">
<div style="min-width: 1ch">
<div style="background-color: blue">
<div style="width: 10ch"></div>
</div>
</div>
<div>fourth</div>
</div>
<div style="display: flex; flex-direction: column; height: 2em">
<div>
<div style="min-height: 1em; height: 4em; background-color: blue"></div>
</div>
<div>
fifth
</div>
<div style="display: flex; flex-direction: column; height: 2em">
<div>
<div style="min-height: 6em; height: 4em; background-color: blue"></div>
</div>
<div>
sixth
</div>
|