-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnote
58 lines (46 loc) · 760 Bytes
/
note
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
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
.container {
background-color: #ccc;
padding: 10px;
/*height: 1500px;*/
display: flex;
flex-direction: row;
justify-content: space-between;
align-items: center;
}
.item {
background-color: #f1425d;
padding: 30px;
margin: 30px;
color: #fff;
font-size: 40px;
}
.i3 {
height: 200px;
order: -2;
/*
flex-basis: 300px;
flex-shrink: 0;*/
flex: 0 1 300px;
}
.i4 {
height: 200px;
order: 1;
flex: -1;
}
.i5 {
align-self: flex-end;
order: -1;
}
<div class="container">
<div class="item">1</div>
<div class="item">2</div>
<div class="item i3">3</div>
<div class="item i4">4</div>
<div class="item i5">5</div>
<div class="item">6</div>
</div>