-
Notifications
You must be signed in to change notification settings - Fork 0
/
flexbox.html
87 lines (82 loc) · 1.84 KB
/
flexbox.html
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
77
78
79
80
81
82
83
84
85
86
87
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Flexbox</title>
<style>
.el--1 {
background-color: blueviolet;
}
.el--2 {
background-color: orangered;
}
.el--3 {
background-color: green;
height: 150px;
}
.el--4 {
background-color: goldenrod;
}
.el--5 {
background-color: palevioletred;
}
.el--6 {
background-color: steelblue;
}
.el--7 {
background-color: yellow;
}
.el--8 {
background-color: crimson;
}
.container {
/* STARTER */
font-family: sans-serif;
background-color: #ddd;
font-size: 32px;
margin: 40px;
/* FLEXBOX */
display: flex;
align-items: center;
justify-content: flex-start;
gap: 10px;
}
.el {
/* Default
flex-grow:0;
flex-shrink: 1;
flex-basis: auto; */
/* flex-basis:200px; */
/* flex-shrink:0;
flex-grow: 1; */
flex:1;
}
.el--1 {
align-self: flex-start;
/* order: 2; */
/* flex-grow:2; */
}
.el--5 {
align-self: stretch;
order: 1;
}
.el--6 {
order: -1;
}
</style>
</head>
<body>
<div class="container">
<div class="el el--1">HTML</div>
<div class="el el--2">and</div>
<div class="el el--3">CSS</div>
<div class="el el--4">are</div>
<div class="el el--5">amazing</div>
<!-- <div class="el el--6">languages</div>
<div class="el el--7">to</div>
<div class="el el--8">learn</div> -->
</div>
</body>
</html>