-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexample-11.css
More file actions
58 lines (50 loc) · 911 Bytes
/
example-11.css
File metadata and controls
58 lines (50 loc) · 911 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
49
50
51
52
53
54
55
56
57
58
.container-ex-11 {
display: flex;
width: 150px;
height: 250px;
flex-wrap: wrap;
align-content: center;
background: grey;
margin-top: 10px;
}
.container-ex-11 > div {
text-align: center;
vertical-align: center;
font-weight: 700;
color: white;
}
.container-ex-11 > .item-1 {
width: 50px;
height: 50px;
background: red;
}
.container-ex-11 > .item-2 {
width: 50px;
height: 50px;
background: green;
}
.container-ex-11 > .item-3 {
width: 50px;
height: 50px;
background: blue;
}
.container-ex-11 > .item-4 {
width: 50px;
height: 50px;
background: brown;
}
.container-ex-11 > .item-5 {
width: 50px;
height: 50px;
background: purple;
}
.container-ex-11 > .item-6 {
width: 50px;
height: 50px;
background: maroon;
}
.container-ex-11 > .item-7 {
width: 50px;
height: 50px;
background: cyan;
}