diff --git a/curriculum/challenges/english/16-the-odin-project/top-build-a-recipe-project/top-build-a-recipe-project.md b/curriculum/challenges/english/16-the-odin-project/top-build-a-recipe-project/top-build-a-recipe-project.md index 314e99bd61a..7e8617cf871 100644 --- a/curriculum/challenges/english/16-the-odin-project/top-build-a-recipe-project/top-build-a-recipe-project.md +++ b/curriculum/challenges/english/16-the-odin-project/top-build-a-recipe-project/top-build-a-recipe-project.md @@ -173,7 +173,7 @@ assert(allAnchorsHaveHrefHash && anchorTags.length > 0);
+
This recipe is for a rich and creamy chocolate fudge that is sure to satisfy your sweet tooth. It's perfect for a special occasion or as a tasty treat for any time of the year.
This recipe is easy to follow and only requires a few simple ingredients. With just a few steps, you'll be able to create a delicious dessert that everyone will love.
diff --git a/curriculum/challenges/english/16-the-odin-project/top-introduction-to-flexbox/introduction-flexbox-question-b.md b/curriculum/challenges/english/16-the-odin-project/top-introduction-to-flexbox/introduction-flexbox-question-b.md index 230dd2cf857..682cb7bea10 100644 --- a/curriculum/challenges/english/16-the-odin-project/top-introduction-to-flexbox/introduction-flexbox-question-b.md +++ b/curriculum/challenges/english/16-the-odin-project/top-introduction-to-flexbox/introduction-flexbox-question-b.md @@ -10,7 +10,7 @@ As you’ve seen, flexbox is not just a single CSS property but a whole toolbox A flex container is any element that has `display: flex` on it. A flex item is any element that lives directly inside of a flex container. -
+
# --question--
diff --git a/curriculum/challenges/english/16-the-odin-project/top-introduction-to-flexbox/introduction-flexbox-question-c.md b/curriculum/challenges/english/16-the-odin-project/top-introduction-to-flexbox/introduction-flexbox-question-c.md
index 196daf52983..c854c88b764 100644
--- a/curriculum/challenges/english/16-the-odin-project/top-introduction-to-flexbox/introduction-flexbox-question-c.md
+++ b/curriculum/challenges/english/16-the-odin-project/top-introduction-to-flexbox/introduction-flexbox-question-c.md
@@ -8,12 +8,13 @@ dashedName: introduction-flexbox-question-c
Somewhat confusingly, any element can be both a flex container and a flex item. Said another way, you can also put `display: flex` on a flex item and then use flexbox to arrange its children.
-
+
Creating and nesting multiple flex containers and items is the primary way you will be building up complex layouts. The following image was achieved using only flexbox to arrange, size, and place the various elements. Flexbox is a very powerful tool.
-
+
+Certainly, the image features a representation of a CSS Flexbox layout with nested flex containers. The outer container is denoted as "ALSO a flex container" highlighted in blue, and within it is another container marked as "with flex items" in red. Inside the red container, there are three items labeled as "flex items" in peach. This demonstrates that a flex container can be nested within another flex container and contain its own flex items, showcasing the recursive nature of Flexbox layout structures.
# --question--
diff --git a/curriculum/challenges/english/16-the-odin-project/top-introduction-to-flexbox/introduction-flexbox-question-e.md b/curriculum/challenges/english/16-the-odin-project/top-introduction-to-flexbox/introduction-flexbox-question-e.md
index 91ba06f868f..d05f7e83233 100644
--- a/curriculum/challenges/english/16-the-odin-project/top-introduction-to-flexbox/introduction-flexbox-question-e.md
+++ b/curriculum/challenges/english/16-the-odin-project/top-introduction-to-flexbox/introduction-flexbox-question-e.md
@@ -12,7 +12,7 @@ The `flex` declaration is actually a shorthand for 3 properties that you can set
In this case, `flex` is actually a shorthand for `flex-grow`, `flex-shrink` and `flex-basis`.
-
+
In the above screenshot, `flex: 1` equates to: `flex-grow: 1`, `flex-shrink: 1`, `flex-basis: 0`.
diff --git a/curriculum/challenges/english/16-the-odin-project/top-introduction-to-flexbox/introduction-flexbox-question-j.md b/curriculum/challenges/english/16-the-odin-project/top-introduction-to-flexbox/introduction-flexbox-question-j.md
index bbdf499748f..336a59ed5e5 100644
--- a/curriculum/challenges/english/16-the-odin-project/top-introduction-to-flexbox/introduction-flexbox-question-j.md
+++ b/curriculum/challenges/english/16-the-odin-project/top-introduction-to-flexbox/introduction-flexbox-question-j.md
@@ -16,7 +16,7 @@ Adding `flex: 1` to `.item` makes each of the items grow to fill the available s
Remove `flex: 1` from `.item` and add `justify-content: space-between` to `.container`. Doing so should give you something like this:
-
+
`justify-content` aligns items across the **main axis**. There are a few values that you can use here. You'll learn the rest of them in the reading assignments, but for now try changing it to center, which should center the boxes along the main axis.
diff --git a/curriculum/challenges/english/16-the-odin-project/top-introduction-to-flexbox/introduction-flexbox-question-k.md b/curriculum/challenges/english/16-the-odin-project/top-introduction-to-flexbox/introduction-flexbox-question-k.md
index 2436aac925c..ce07030d486 100644
--- a/curriculum/challenges/english/16-the-odin-project/top-introduction-to-flexbox/introduction-flexbox-question-k.md
+++ b/curriculum/challenges/english/16-the-odin-project/top-introduction-to-flexbox/introduction-flexbox-question-k.md
@@ -12,7 +12,7 @@ allowtransparency="true" class="cp_embed_iframe " frameborder="0" height="400" w
To change the placement of items along the cross axis use `align-items`. Try getting the boxes to the center of the container by adding `align-items: center` to `.container`. The desired result looks like this:
-
+
Because `justify-content` and `align-items` are based on the main and cross axis of your container, their behavior changes when you change the flex-direction of a flex-container. For example, when you change `flex-direction` to `column`, `justify-content` aligns vertically and `align-items` aligns horizontally. The most common behavior, however, is the default, i.e. `justify-content` aligns items horizontally (because the main axis defaults to horizontal), and `align-items` aligns them vertically. One of the biggest sticking points that beginners have with flexbox is confusion when this behavior changes.
diff --git a/curriculum/challenges/english/16-the-odin-project/top-learn-html-foundations/html-foundations-question-a.md b/curriculum/challenges/english/16-the-odin-project/top-learn-html-foundations/html-foundations-question-a.md
index 2b1e693b7c1..df88a26851d 100644
--- a/curriculum/challenges/english/16-the-odin-project/top-learn-html-foundations/html-foundations-question-a.md
+++ b/curriculum/challenges/english/16-the-odin-project/top-learn-html-foundations/html-foundations-question-a.md
@@ -15,7 +15,7 @@ Closing tags tell the browser where an element ends. They are almost the same as
A full paragraph element looks like this:
-
+
# --assignment--
diff --git a/curriculum/challenges/english/16-the-odin-project/top-the-box-model/the-box-model-question-b.md b/curriculum/challenges/english/16-the-odin-project/top-the-box-model/the-box-model-question-b.md
index b9e3ad47b74..2cf02276318 100644
--- a/curriculum/challenges/english/16-the-odin-project/top-the-box-model/the-box-model-question-b.md
+++ b/curriculum/challenges/english/16-the-odin-project/top-the-box-model/the-box-model-question-b.md
@@ -8,11 +8,11 @@ dashedName: the-box-model-question-b
In the Elements pane, you can see the entire HTML structure of your page. You can click on any of the elements in this pane to select that specific element. Alternatively, you can click the blue-highlighted icon shown below on the left, and hover over any element on the page.
-
+
# --question--
diff --git a/curriculum/challenges/english/16-the-odin-project/top-the-box-model/the-box-model-question-c.md b/curriculum/challenges/english/16-the-odin-project/top-the-box-model/the-box-model-question-c.md
index f220a141c2f..1163fd4bda1 100644
--- a/curriculum/challenges/english/16-the-odin-project/top-the-box-model/the-box-model-question-c.md
+++ b/curriculum/challenges/english/16-the-odin-project/top-the-box-model/the-box-model-question-c.md
@@ -8,11 +8,11 @@ dashedName: the-box-model-question-c
In the Elements pane, you can see the entire HTML structure of your page. You can click on any of the elements in this pane to select that specific element. Alternatively, you can click the blue-highlighted icon shown below on the left, and hover over any element on the page.
-
+
# --assignment--
diff --git a/curriculum/challenges/english/16-the-odin-project/top-the-box-model/the-box-model-question-d.md b/curriculum/challenges/english/16-the-odin-project/top-the-box-model/the-box-model-question-d.md
index ac7cb451091..6faffa5d157 100644
--- a/curriculum/challenges/english/16-the-odin-project/top-the-box-model/the-box-model-question-d.md
+++ b/curriculum/challenges/english/16-the-odin-project/top-the-box-model/the-box-model-question-d.md
@@ -8,12 +8,11 @@ dashedName: the-box-model-question-d
In the Elements pane, you can see the entire HTML structure of your page. You can click on any of the elements in this pane to select that specific element. Alternatively, you can click the blue-highlighted icon shown below on the left, and hover over any element on the page.
-
+
# --assignment--
Play around with Chrome Dev Tools and see if you can answer the following question.
diff --git a/curriculum/challenges/english/16-the-odin-project/top-the-box-model/the-box-model-question-g.md b/curriculum/challenges/english/16-the-odin-project/top-the-box-model/the-box-model-question-g.md
index fdd4840cfa0..5a9453abcdc 100644
--- a/curriculum/challenges/english/16-the-odin-project/top-the-box-model/the-box-model-question-g.md
+++ b/curriculum/challenges/english/16-the-odin-project/top-the-box-model/the-box-model-question-g.md
@@ -6,7 +6,7 @@ dashedName: the-box-model-question-g
---
# --description--
-
+
OK, so there might be some circles in the above image… but when it comes to layout, they fit together like rectangular boxes and not circles. In the end, laying out a webpage and positioning all its elements is deciding how you are going to nest and stack these boxes.
@@ -18,7 +18,7 @@ The only real complication here is that there are many ways to manipulate the si
Be sure to study the diagrams carefully.
-
+
# --assignment--