-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathflexbox.html
More file actions
95 lines (88 loc) · 2.32 KB
/
flexbox.html
File metadata and controls
95 lines (88 loc) · 2.32 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
<!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: 250px;
}
.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: 40px;
margin: 40px;
/* FLEXBOX */
display:flex;
align-items: center;
justify-content: flex-start;
gap: 30px;
/* -- FLEXBOX DEFAULTS: CONTAINER -- */
/*flex-direction: row;*/
/*align-items: stretch;*/
/*gap: 0;*/
/*justify-content: flex-start;*/
/*flex-wrap: nowrap;*/
/*align-content: stretch;*/
/* ------- -- ----------------- */
}
/* DEFAULTS: -ITEMS- */
/* align-self: auto;*/
/* flex-grow: 0;*/
/* flex-shrink: 1;*/
/* flex-basis: auto;*/
/* flex: 0 1 auto;*/
/* order: 0;*/
/*------------ ---------------*/
.el--1 {
align-self: flex-start;
/*order: 2;*/
}
.el--5 {
align-self: stretch;
/* align-self to over ride align-items */
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>