From acc93a3a68c4b59ca9d4cc413d1279177adfe1b5 Mon Sep 17 00:00:00 2001 From: Ilenia Date: Mon, 8 Aug 2022 19:08:24 +0200 Subject: [PATCH] Fix: better description for steps 12&15 in registration form (#47058) * fix: text against challenge guideline * fix: unclear challenge description step 15 * Apply suggestions from code review --- .../60f5cb8875ab6a0610f05071.md | 2 +- .../60f803d5241e6a0433a523a1.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/curriculum/challenges/english/14-responsive-web-design-22/learn-html-forms-by-building-a-registration-form/60f5cb8875ab6a0610f05071.md b/curriculum/challenges/english/14-responsive-web-design-22/learn-html-forms-by-building-a-registration-form/60f5cb8875ab6a0610f05071.md index 90e821035fd..5bc0bb94a19 100644 --- a/curriculum/challenges/english/14-responsive-web-design-22/learn-html-forms-by-building-a-registration-form/60f5cb8875ab6a0610f05071.md +++ b/curriculum/challenges/english/14-responsive-web-design-22/learn-html-forms-by-building-a-registration-form/60f5cb8875ab6a0610f05071.md @@ -7,7 +7,7 @@ dashedName: step-12 # --description-- -Seeing as we plan on having three distinct sections to the form, add three `fieldset` elements within the `form`. +As the form will have three distinct sections, add three `fieldset` elements within the `form` element. # --hints-- diff --git a/curriculum/challenges/english/14-responsive-web-design-22/learn-html-forms-by-building-a-registration-form/60f803d5241e6a0433a523a1.md b/curriculum/challenges/english/14-responsive-web-design-22/learn-html-forms-by-building-a-registration-form/60f803d5241e6a0433a523a1.md index 34661cb2f93..75274fc20e7 100644 --- a/curriculum/challenges/english/14-responsive-web-design-22/learn-html-forms-by-building-a-registration-form/60f803d5241e6a0433a523a1.md +++ b/curriculum/challenges/english/14-responsive-web-design-22/learn-html-forms-by-building-a-registration-form/60f803d5241e6a0433a523a1.md @@ -7,7 +7,7 @@ dashedName: step-15 # --description-- -As `label` elements are `inline` by default, they appear on the same line as the text they are labelling. To make them appear on separate lines, add `display: block` to the `label` element, and add a `margin` of `0.5rem 0`, to separate them from each other. +As `label` elements are inline by default, they are all displayed side by side on the same line, making their text hard to read. To make them appear on separate lines, add `display: block` to the `label` element, and add a `margin` of `0.5rem 0`, to separate them from each other. # --hints--