-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle1.css
44 lines (42 loc) · 834 Bytes
/
style1.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
*{
box-sizing: border-box;
margin: 0;
padding: 0;
}
body{
font-family: Arial, Helvetica, sans-serif;
}
.item{
width: 100px;
height: 100px;
background: blue;
color: antiquewhite;
margin: 10px;
display:flex;
justify-content: center;
align-items: center;
}
.Container-1{
height: 400px;
display: flex;
/*justify-content:space-between;
background-color: aquamarine;
/* align-items: flex-start; */
/* flex-direction:column;
align-items:flex-start; */
background-color: black;
/* flex-wrap: wrap; */
}
.item:nth-last-of-type(1){
/* align-self:flex-start */
/* flex-basis: 200px; */
flex-grow: 2;
}
.item:nth-last-of-type(2){
/* order:3 */
flex-grow: 2;
}
.item:nth-last-of-type(3){
/* align-self: flex-end; */
flex-grow: 2;
}