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 bb4625f commit 10e17c4Copy full SHA for 10e17c4
starter/04-CSS-Layouts/flexbox.html
@@ -50,9 +50,29 @@
50
margin-right: 30px;
51
} */
52
53
+ .el {
54
+ /* DEFAULTS:
55
+ flex-grow: 0;
56
+ flex-shrink: 1;
57
+ flex-basis: auto; */
58
+
59
+ /* * Not make the child elements shrink
60
+ flex-basis: 400px;
61
+ flex-shrink: 0;
62
+ =
63
+ flex: 0 0 400px;
64
+ */
65
66
+ flex-basis: 100px;
67
+ /* flex-grow: 1; */
68
+ flex: 1;
69
+ }
70
71
.el--1 {
72
/* Make this element vertically at the top of the container */
73
align-self: flex-start;
74
75
+ flex-grow: 2;
76
}
77
78
.el--5 {
0 commit comments