-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlecture5.html
More file actions
76 lines (72 loc) · 1.93 KB
/
lecture5.html
File metadata and controls
76 lines (72 loc) · 1.93 KB
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
#parent{
border: 2px solid red;
display: flex;
height: 600px;
width: 800px;
display: flex;
/* flex-direction: column;
flex-direction: row-reverse;
flex-direction: column-reverse; */
/* justify-content: center; */
/* justify-content: end;
justify-content: space-around;
/* justify-content: space-between; */
/* justify-content: space-evenly; */
/* align-items: center; */
/* flex-wrap: wrap; */
}
/* #parent div{
height: 800px;
width: 500px;
background-color: aqua; */
#one{
height: 180px;
width: 200px;
background-color: aquamarine;
display: flex;
justify-content: end;
/* flex-shrink: 1; */
flex-basis: 2;
}
#two{
height: 180px;
width: 200px;
background-color:pink;
display: flex;
flex-direction: column-reverse;
flex-shrink: 2;
/* display: flex; */
/* align-items: end;
justify-content: center; */
}
#three{
height: 180px;
width: 200px;
background-color: purple;
display:flex;
/* flex-grow: 3 ; */
}
/* #four{
height: 180px;
width: 200px;
background-color: skyblue;
display: flex;
} */
</style>
</head>
<body>
<div id="parent">
<div id="one"></div>
<div id="two"></div>
<div id="three"></div>
<div id="four"></div>
</div>
</body>
</html>