We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9bf4bb9 commit 99121e3Copy full SHA for 99121e3
starter/04-CSS-Layouts/flexbox.html
@@ -36,10 +36,42 @@
36
/* STARTER */
37
font-family: sans-serif;
38
background-color: #ddd;
39
- font-size: 40px;
+ font-size: 32px;
40
margin: 40px;
41
42
/* FLEXBOX */
43
+ align-items: center;
44
+ display: flex;
45
+ gap: 10px;
46
+ justify-content: flex-start;
47
+ }
48
+
49
+ .el {
50
51
+ /* DEFAULTS:
52
+ flex-grow: 0;
53
+ flex-shrink: 1;
54
+ flex-basis: auto; */
55
56
+ /* flex-basis: 200px; */
57
+ /* flex-shrink: 0; */
58
+ /* flex-grow: 1; */
59
+ flex: 1;
60
61
62
+ .el--1 {
63
+ align-self: flex-start;
64
+ /* order: 2; */
65
+ /* flex-grow: 3; */
66
67
68
+ .el--5 {
69
+ align-self: stretch;
70
+ order: 1;
71
72
73
+ .el--6 {
74
+ order: -1;
75
}
76
</style>
77
</head>
0 commit comments