-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathflexbox.css
58 lines (52 loc) · 1.03 KB
/
flexbox.css
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
.Container {
display: flex;
border: 5px solid black;
height: 45px;
padding: 2px;
width: 800px;
height: 300px;
align-items: center;
flex-direction: row;
justify-content: center;
}
.fcontainer {
display: flex;
border: 5px solid yellow;
background-color: pink;
padding: 4px;
margin: 5px;
width: 180px;
height: 150px;
flex-direction: row;
font-style: inherit;
}
.Item {
background-color: red;
border: 5px solid blue;
padding: 2px;
margin: 5px;
width: 180px;
height: 150px;
display: flex;
}
.Fblack {
display: flex;
background-color: green;
border: 5px solid red;
margin: 5px;
width: 180px;
height: 150px;
padding: 2px;
}
.Container .item1 {
border: 5px solid lightgreen;
background-color: yellow;
}
.fcontainer .item2 {
border: 5px solid purple;
background-color: pink;
}
.Fblack .item3 {
border: 5px solid wheat;
background-color: plum;
}