blob: e580d8c39adec943b35fa873340586a478a40bb6 (
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
|
<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
<html>
<head>
<style type="text/css">
.box {
display: -webkit-flex;
display: flex;
}
.horizontal {
-webkit-flex-direction: row;
flex-direction: horizontal;
}
.vertical {
-webkit-flex-direction: column;
flex-direction: column;
}
.box span {
display: -webkit-flex;
display: flex;
}
</style>
<script src="../../resources/js-test.js"></script>
</head>
<body>
<p id="description"></p>
<div id="main">
<p>
reference of horizontal button:<br>
<button id="reference_horizontal">
<span>hello</span>
<span>world</span>
</button>
<p>
reference of vertical button:<br>
<button id="reference_vertical">
<span>hello</span><br>
<span>world</span>
</button>
<p>
default:<br>
<button id="default" class="box">
<span>hello</span>
<span>world</span>
</button>
<p>
horizontal:<br>
<button id="horizontal" class="box horizontal">
<span>hello</span>
<span>world</span>
</button>
<p>
vertical:<br>
<button id="vertical" class="box vertical">
<span>hello</span>
<span>world</span>
</button>
<p>
default => vertical:<br>
<button id="toVertical" class="box">
<span>hello</span>
<span>world</span>
</button>
<p>
vertical => horizontal:<br>
<button id="toHorizontal" class="box vertical">
<span>hello</span>
<span>world</span>
</button>
</div>
<div id="console"></div>
<script src="resources/box-orient-button.js"></script>
</body>
</html>
|