From 0f922b86522cba6ec85e4169145e1faaa92cfbb3 Mon Sep 17 00:00:00 2001 From: a2937 Date: Wed, 12 Apr 2023 16:30:42 -0400 Subject: [PATCH] Chore(cirriculum) - Use alternate wording for step 36 of the cafe menu. (#49996) * Use alternate wording for step 36 of the cafe menu. * Restore the last sentence. --- .../5f3c866de7a5b784048f94b1.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/curriculum/challenges/english/14-responsive-web-design-22/learn-basic-css-by-building-a-cafe-menu/5f3c866de7a5b784048f94b1.md b/curriculum/challenges/english/14-responsive-web-design-22/learn-basic-css-by-building-a-cafe-menu/5f3c866de7a5b784048f94b1.md index 5645ab625ec..bf345cc1dd8 100644 --- a/curriculum/challenges/english/14-responsive-web-design-22/learn-basic-css-by-building-a-cafe-menu/5f3c866de7a5b784048f94b1.md +++ b/curriculum/challenges/english/14-responsive-web-design-22/learn-basic-css-by-building-a-cafe-menu/5f3c866de7a5b784048f94b1.md @@ -9,7 +9,7 @@ dashedName: step-36 That is kind of what you want, but now it would be nice if the flavor and price were on the same line. `p` elements are block-level elements, so they take up the entire width of their parent element. -To get them on the same line, you need to apply some styling to the `p` elements, so they behave more like inline elements. Add a `class` attribute with the value `item` to the first `article` element under the `Coffee` heading. +To get them on the same line, you need to apply some styling to the `p` elements so they behave more like inline elements. To do that, start by adding a `class` attribute with the value `item` to the first `article` element under the `Coffee` heading. # --hints--