-
Notifications
You must be signed in to change notification settings - Fork 0
/
26-flex.html
72 lines (58 loc) · 1.48 KB
/
26-flex.html
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>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
.MyContainer {
background-color: #607D8B;
color: #fff;
display: flex;
flex-direction: row;
align-items: flex-start;
}
.MyItem {
background-color: #f2f2f2;
color: #000;
font-size: 25px;
margin: 5px;
padding: 20px;
text-align: center;
}
.order1 {
order: 5;
}
.order2 {
order: 4;
}
.order3 {
order: 3;
}
.order4 {
order: 2;
}
.order5 {
order: 1;
}
</style>
</head>
<body>
<h2>حالت عادی</h2>
<div class="MyContainer">
<div class="MyItem">1</div>
<div class="MyItem">2</div>
<div class="MyItem">3</div>
<div class="MyItem">4</div>
<div class="MyItem">5</div>
</div>
<h2>حالت سفارشی سازی شده</h2>
<div class="MyContainer">
<div class="MyItem order1">1</div>
<div class="MyItem order4">2</div>
<div class="MyItem order3">3</div>
<div class="MyItem order2">4</div>
<div class="MyItem order5">5</div>
</div>
</body>
</html>