blob: 42321c506979b2ec08814cf024dc95da24f3d6d2 (
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
|
<!DOCTYPE html>
<style>
.flexbox {
width: 300px;
display: flex;
border-style: solid;
border-width: 1px 2px 1px 4px;
}
.rtl {
direction: rtl;
}
.redbox {
background: red;
width: 100px;
flex-shrink: 0;
}
.greenbox {
background: green;
width: 100px;
flex-shrink: 0;
}
</style>
<p>Exercises -webkit-box with various box-pack settings when rtl. In all cases
the order of letters in the boxes should be alphabetized left to right.
<p>Start. Boxes should be aligned to right side.
<div class="flexbox rtl">
<div class="redbox">B</div>
<div class="greenbox">A</div>
</div>
<p>Centered. Boxes should be centered.
<div class="flexbox rtl" style="justify-content: center;">
<div class="redbox">B</div>
<div class="greenbox">A</div>
</div>
<p>End. Boxes should be aligned to left side.
<div class="flexbox rtl" style="justify-content: flex-end;">
<div class="redbox">B</div>
<div class="greenbox">A</div>
</div>
<p>Start, content too big. Boxes should start at left edge and extend
outside border.
<div class="flexbox">
<div class="greenbox rtl">A</div>
<div class="redbox rtl">B</div>
<div class="greenbox rtl">C</div>
<div class="redbox rtl">D</div>
</div>
<p>Center, content too big. Boxes should start at left edge and extend
outside border.
<div class="flexbox">
<div class="greenbox rtl">A</div>
<div class="redbox rtl">B</div>
<div class="greenbox rtl">C</div>
<div class="redbox rtl">D</div>
</div>
<p>End, content too big. Boxes should start at left edge and extend
outside border.
<div class="flexbox">
<div class="greenbox rtl">A</div>
<div class="redbox rtl">B</div>
<div class="greenbox rtl">C</div>
<div class="redbox rtl">D</div>
</div>
|