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 d6b00d9 commit fb0c3acCopy full SHA for fb0c3ac
starter/04-CSS-Layouts/flexbox.html
@@ -30,6 +30,7 @@
30
}
31
.el--8 {
32
background-color: crimson;
33
+ padding: 10px;
34
35
36
.container {
@@ -38,7 +39,9 @@
38
39
background-color: #ddd;
40
font-size: 40px;
41
margin: 40px;
-
42
+ display: flex;
43
+ align-items: stretch;
44
+ justify-content: space-around;
45
/* FLEXBOX */
46
47
</style>
starter/04-CSS-Layouts/index.html
@@ -25,8 +25,8 @@ <h1>📘 The Code Magazine</h1>
25
<!-- <strong>This is the navigation</strong> -->
26
<a href="blog.html">Blog</a>
27
<a href="#">Challenges</a>
28
- <a href="#">Flexbox</a>
29
- <a href="#">CSS Grid</a>
+ <a href="flexbox.html">Flexbox</a>
+ <a href="css-grid.html">CSS Grid</a>
</nav>
</header>
0 commit comments