-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathflex.css
More file actions
48 lines (43 loc) · 818 Bytes
/
Copy pathflex.css
File metadata and controls
48 lines (43 loc) · 818 Bytes
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
.main{
height: 800px;
background-color: darkkhaki;
display: flex;
color: orangered;
flex-wrap: wrap;
flex-direction: row;
justify-content: space-between;
align-items: flex-end;
}
.sub1{
height: 100px;
width: 300px;
background-color: darksalmon;
border: 3px solid gray;
border-radius: 5px;
order: 3;
}
.sub2{
height: 100px;
width: 300px;
background-color: lightblue;
border: 3px solid gray;
border-radius: 5px;
order: 2;
flex-grow: 3;
}
.sub3{
height: 100px;
width: 500px;
background-color: lightseagreen;
border: 3px solid gray;
border-radius: 5px;
order: 1;
}
.sub4{
height: 100px;
width: 300px;
background-color: lightpink;
border: 3px solid gray;
border-radius: 5px;
order: 0;
}