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 8229f14 commit 44586a6Copy full SHA for 44586a6
starter/04-CSS-Layouts/flexbox.html
@@ -38,7 +38,9 @@
38
background-color: #ddd;
39
font-size: 40px;
40
margin: 40px;
41
-
+ display: flex;
42
+ align-items: center;
43
+ justify-content: space-between;
44
/* FLEXBOX */
45
}
46
</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>
30
</nav>
31
<!-- * Old way to clearing float problem -->
32
<!-- <div class="clear"></div> -->
0 commit comments