mirror of
https://github.com/freeCodeCamp/freeCodeCamp.git
synced 2025-12-19 10:07:46 -05:00
fix(curriculum): typos in parent teacher conference form workshop (#64773)
This commit is contained in:
@@ -7,7 +7,7 @@ dashedName: step-8
|
||||
|
||||
# --description--
|
||||
|
||||
The next step is to section in the form for the parent information.
|
||||
The next step is the section in the form for the parent information.
|
||||
|
||||
Start by adding another `fieldset` element. Inside that `fieldset` element, add a `legend` element with the text `Parent/Guardian Information`.
|
||||
|
||||
|
||||
@@ -7,7 +7,7 @@ dashedName: step-12
|
||||
|
||||
# --description--
|
||||
|
||||
Next, add another label with a class of `"contact-method"` and a `for` attribute set to `"phone"`. The label should text should be `Phone: `.
|
||||
Next, add another label with a class of `"contact-method"` and a `for` attribute set to `"phone"`. The label text should be `Phone: `.
|
||||
|
||||
Below your `label` element, add a radio button with `id` and `value` attributes set to `"phone"`. The `name` attribute should be set to `"contact-method"` and the class should be set to `"contact-method-radio-btn"`.
|
||||
|
||||
|
||||
@@ -9,7 +9,7 @@ dashedName: step-32
|
||||
|
||||
Now, you should create the inner circle that will appear when the radio button is checked. You will use the `::before` pseudo-element for this.
|
||||
|
||||
A pseudo-element like `:before` lets you insert extra content before the actual element. This is often used for decorative purposes.
|
||||
A pseudo-element like `::before` lets you insert extra content before the actual element. This is often used for decorative purposes.
|
||||
|
||||
Targeting `.contact-method-radio-btn::before` pseudo-element, set a `display` of `block`, `content` of `" "`, `width` of `10px`, `height` of `10px`, and `border-radius` of `50%`.
|
||||
|
||||
|
||||
Reference in New Issue
Block a user