From 3164f75f67d3f637457afc2ed5ddaea2aaea2d7e Mon Sep 17 00:00:00 2001 From: Eric Do Date: Tue, 6 Aug 2024 14:29:43 -0700 Subject: [PATCH] fix(curriculum): replace p tag with h3 tag (#55738) --- .../6145ed1f22caab087630aaad.md | 10 ++++----- .../6145ee65e2e1530938cb594d.md | 2 +- .../6145f02240ff8f09f7ec913c.md | 2 +- .../6145f14f019a4b0adb94b051.md | 2 +- .../6145f3a5cd9be60b9459cdd6.md | 2 +- .../6145f47393fbe70c4d885f9c.md | 2 +- .../6145f59029474c0d3dc1c8b8.md | 2 +- .../6145f685797bd30df9784e8c.md | 2 +- .../6145f829ac6a920ebf5797d7.md | 2 +- .../6145f8f8bcd4370f6509078e.md | 2 +- .../6145fb5018cb5b100cb2a88c.md | 2 +- .../6145fc3707fc3310c277f5c8.md | 2 +- .../614796cb8086be482d60e0ac.md | 2 +- .../6147a14ef5668b5881ef2297.md | 2 +- .../614878f7a412310647873015.md | 2 +- .../61487b77d4a37707073a64e5.md | 2 +- .../61487da611a65307e78d2c20.md | 2 +- .../61487f703571b60899055cf9.md | 2 +- .../614880dc16070e093e29bc56.md | 2 +- .../614883b6fa720e09fb167de9.md | 2 +- .../614884c1f5d6f30ab3d78cde.md | 2 +- .../61488ecfd05e290b5712e6da.md | 2 +- .../6148d99cdc7acd0c519862cb.md | 2 +- .../6148da157cc0bd0d06df5c0a.md | 2 +- .../6148dc095264000dce348bf5.md | 2 +- .../6148dcaaf2e8750e6cb4501a.md | 22 +++++++++---------- .../6148dd31d210990f0fb140f8.md | 6 ++--- .../6148defa9c01520fb9d178a0.md | 6 ++--- .../6148dfab9b54c110577de165.md | 6 ++--- .../6148e0bcc13efd10f7d7a6a9.md | 6 ++--- .../6148e161ecec9511941f8833.md | 6 ++--- .../6148e28706b34912340fd042.md | 6 ++--- .../6148e335c1edd512d00e4691.md | 6 ++--- .../6148e41c728f65138addf9cc.md | 6 ++--- .../6148e5aeb102e3142de026a2.md | 10 ++++----- 35 files changed, 69 insertions(+), 69 deletions(-) diff --git a/curriculum/challenges/english/14-responsive-web-design-22/learn-accessibility-by-building-a-quiz/6145ed1f22caab087630aaad.md b/curriculum/challenges/english/14-responsive-web-design-22/learn-accessibility-by-building-a-quiz/6145ed1f22caab087630aaad.md index e4be3c17ed7..ea914a4f9bd 100644 --- a/curriculum/challenges/english/14-responsive-web-design-22/learn-accessibility-by-building-a-quiz/6145ed1f22caab087630aaad.md +++ b/curriculum/challenges/english/14-responsive-web-design-22/learn-accessibility-by-building-a-quiz/6145ed1f22caab087630aaad.md @@ -7,20 +7,20 @@ dashedName: step-34 # --description-- -To prevent unnecessary repetition, target the `before` pseudo-element of the `p` element, and give it a `content` property of `"Question #"`. +To prevent unnecessary repetition, target the `before` pseudo-element of the `h3` element, and give it a `content` property of `"Question #"`. # --hints-- -You should use the `p::before` selector. +You should use the `h3::before` selector. ```js -assert.exists(new __helpers.CSSHelp(document).getStyle('p::before')); +assert.exists(new __helpers.CSSHelp(document).getStyle('h3::before')); ``` -You should give the `p::before` pseudo-element a `content` property of `"Question #"`. +You should give the `h3::before` pseudo-element a `content` property of `"Question #"`. ```js -assert.include(new __helpers.CSSHelp(document).getStyle('p::before')?.content, 'Question #'); +assert.include(new __helpers.CSSHelp(document).getStyle('h3::before')?.content, 'Question #'); ``` # --seed-- diff --git a/curriculum/challenges/english/14-responsive-web-design-22/learn-accessibility-by-building-a-quiz/6145ee65e2e1530938cb594d.md b/curriculum/challenges/english/14-responsive-web-design-22/learn-accessibility-by-building-a-quiz/6145ee65e2e1530938cb594d.md index 53bd9486ff4..a279f42db30 100644 --- a/curriculum/challenges/english/14-responsive-web-design-22/learn-accessibility-by-building-a-quiz/6145ee65e2e1530938cb594d.md +++ b/curriculum/challenges/english/14-responsive-web-design-22/learn-accessibility-by-building-a-quiz/6145ee65e2e1530938cb594d.md @@ -213,7 +213,7 @@ h2 { border-bottom: 4px solid #dfdfe2; } -p::before { +h3::before { content: "Question #"; } diff --git a/curriculum/challenges/english/14-responsive-web-design-22/learn-accessibility-by-building-a-quiz/6145f02240ff8f09f7ec913c.md b/curriculum/challenges/english/14-responsive-web-design-22/learn-accessibility-by-building-a-quiz/6145f02240ff8f09f7ec913c.md index 8c28234ef85..cd3f58403c0 100644 --- a/curriculum/challenges/english/14-responsive-web-design-22/learn-accessibility-by-building-a-quiz/6145f02240ff8f09f7ec913c.md +++ b/curriculum/challenges/english/14-responsive-web-design-22/learn-accessibility-by-building-a-quiz/6145f02240ff8f09f7ec913c.md @@ -196,7 +196,7 @@ h2 { border-bottom: 4px solid #dfdfe2; } -p::before { +h3::before { content: "Question #"; } diff --git a/curriculum/challenges/english/14-responsive-web-design-22/learn-accessibility-by-building-a-quiz/6145f14f019a4b0adb94b051.md b/curriculum/challenges/english/14-responsive-web-design-22/learn-accessibility-by-building-a-quiz/6145f14f019a4b0adb94b051.md index 1e9a4dc6cad..6f8ccaa6fb2 100644 --- a/curriculum/challenges/english/14-responsive-web-design-22/learn-accessibility-by-building-a-quiz/6145f14f019a4b0adb94b051.md +++ b/curriculum/challenges/english/14-responsive-web-design-22/learn-accessibility-by-building-a-quiz/6145f14f019a4b0adb94b051.md @@ -231,7 +231,7 @@ h2 { border-bottom: 4px solid #dfdfe2; } -p::before { +h3::before { content: "Question #"; } diff --git a/curriculum/challenges/english/14-responsive-web-design-22/learn-accessibility-by-building-a-quiz/6145f3a5cd9be60b9459cdd6.md b/curriculum/challenges/english/14-responsive-web-design-22/learn-accessibility-by-building-a-quiz/6145f3a5cd9be60b9459cdd6.md index 061bdd9e739..e898a1923ae 100644 --- a/curriculum/challenges/english/14-responsive-web-design-22/learn-accessibility-by-building-a-quiz/6145f3a5cd9be60b9459cdd6.md +++ b/curriculum/challenges/english/14-responsive-web-design-22/learn-accessibility-by-building-a-quiz/6145f3a5cd9be60b9459cdd6.md @@ -203,7 +203,7 @@ h2 { border-bottom: 4px solid #dfdfe2; } -p::before { +h3::before { content: "Question #"; } diff --git a/curriculum/challenges/english/14-responsive-web-design-22/learn-accessibility-by-building-a-quiz/6145f47393fbe70c4d885f9c.md b/curriculum/challenges/english/14-responsive-web-design-22/learn-accessibility-by-building-a-quiz/6145f47393fbe70c4d885f9c.md index b1e8033e80a..3ad1a5673dc 100644 --- a/curriculum/challenges/english/14-responsive-web-design-22/learn-accessibility-by-building-a-quiz/6145f47393fbe70c4d885f9c.md +++ b/curriculum/challenges/english/14-responsive-web-design-22/learn-accessibility-by-building-a-quiz/6145f47393fbe70c4d885f9c.md @@ -210,7 +210,7 @@ h2 { border-bottom: 4px solid #dfdfe2; } -p::before { +h3::before { content: "Question #"; } diff --git a/curriculum/challenges/english/14-responsive-web-design-22/learn-accessibility-by-building-a-quiz/6145f59029474c0d3dc1c8b8.md b/curriculum/challenges/english/14-responsive-web-design-22/learn-accessibility-by-building-a-quiz/6145f59029474c0d3dc1c8b8.md index 10766d22924..c71c3a2075d 100644 --- a/curriculum/challenges/english/14-responsive-web-design-22/learn-accessibility-by-building-a-quiz/6145f59029474c0d3dc1c8b8.md +++ b/curriculum/challenges/english/14-responsive-web-design-22/learn-accessibility-by-building-a-quiz/6145f59029474c0d3dc1c8b8.md @@ -217,7 +217,7 @@ h2 { border-bottom: 4px solid #dfdfe2; } -p::before { +h3::before { content: "Question #"; } diff --git a/curriculum/challenges/english/14-responsive-web-design-22/learn-accessibility-by-building-a-quiz/6145f685797bd30df9784e8c.md b/curriculum/challenges/english/14-responsive-web-design-22/learn-accessibility-by-building-a-quiz/6145f685797bd30df9784e8c.md index 308342f4ff0..c173b79b785 100644 --- a/curriculum/challenges/english/14-responsive-web-design-22/learn-accessibility-by-building-a-quiz/6145f685797bd30df9784e8c.md +++ b/curriculum/challenges/english/14-responsive-web-design-22/learn-accessibility-by-building-a-quiz/6145f685797bd30df9784e8c.md @@ -211,7 +211,7 @@ h2 { border-bottom: 4px solid #dfdfe2; } -p::before { +h3::before { content: "Question #"; } diff --git a/curriculum/challenges/english/14-responsive-web-design-22/learn-accessibility-by-building-a-quiz/6145f829ac6a920ebf5797d7.md b/curriculum/challenges/english/14-responsive-web-design-22/learn-accessibility-by-building-a-quiz/6145f829ac6a920ebf5797d7.md index 1d5f7c11286..b4280d93eec 100644 --- a/curriculum/challenges/english/14-responsive-web-design-22/learn-accessibility-by-building-a-quiz/6145f829ac6a920ebf5797d7.md +++ b/curriculum/challenges/english/14-responsive-web-design-22/learn-accessibility-by-building-a-quiz/6145f829ac6a920ebf5797d7.md @@ -196,7 +196,7 @@ h2 { border-bottom: 4px solid #dfdfe2; } -p::before { +h3::before { content: "Question #"; } diff --git a/curriculum/challenges/english/14-responsive-web-design-22/learn-accessibility-by-building-a-quiz/6145f8f8bcd4370f6509078e.md b/curriculum/challenges/english/14-responsive-web-design-22/learn-accessibility-by-building-a-quiz/6145f8f8bcd4370f6509078e.md index b3160800016..42aa342c21e 100644 --- a/curriculum/challenges/english/14-responsive-web-design-22/learn-accessibility-by-building-a-quiz/6145f8f8bcd4370f6509078e.md +++ b/curriculum/challenges/english/14-responsive-web-design-22/learn-accessibility-by-building-a-quiz/6145f8f8bcd4370f6509078e.md @@ -201,7 +201,7 @@ h2 { border-bottom: 4px solid #dfdfe2; } -p::before { +h3::before { content: "Question #"; } diff --git a/curriculum/challenges/english/14-responsive-web-design-22/learn-accessibility-by-building-a-quiz/6145fb5018cb5b100cb2a88c.md b/curriculum/challenges/english/14-responsive-web-design-22/learn-accessibility-by-building-a-quiz/6145fb5018cb5b100cb2a88c.md index f101f91f6d7..3d046cb5e74 100644 --- a/curriculum/challenges/english/14-responsive-web-design-22/learn-accessibility-by-building-a-quiz/6145fb5018cb5b100cb2a88c.md +++ b/curriculum/challenges/english/14-responsive-web-design-22/learn-accessibility-by-building-a-quiz/6145fb5018cb5b100cb2a88c.md @@ -210,7 +210,7 @@ h2 { border-bottom: 4px solid #dfdfe2; } -p::before { +h3::before { content: "Question #"; } diff --git a/curriculum/challenges/english/14-responsive-web-design-22/learn-accessibility-by-building-a-quiz/6145fc3707fc3310c277f5c8.md b/curriculum/challenges/english/14-responsive-web-design-22/learn-accessibility-by-building-a-quiz/6145fc3707fc3310c277f5c8.md index 19ffbdf7b30..8ad2ba57f31 100644 --- a/curriculum/challenges/english/14-responsive-web-design-22/learn-accessibility-by-building-a-quiz/6145fc3707fc3310c277f5c8.md +++ b/curriculum/challenges/english/14-responsive-web-design-22/learn-accessibility-by-building-a-quiz/6145fc3707fc3310c277f5c8.md @@ -237,7 +237,7 @@ h2 { border-bottom: 4px solid #dfdfe2; } -p::before { +h3::before { content: "Question #"; } diff --git a/curriculum/challenges/english/14-responsive-web-design-22/learn-accessibility-by-building-a-quiz/614796cb8086be482d60e0ac.md b/curriculum/challenges/english/14-responsive-web-design-22/learn-accessibility-by-building-a-quiz/614796cb8086be482d60e0ac.md index c16034fe2d9..09b41147c1b 100644 --- a/curriculum/challenges/english/14-responsive-web-design-22/learn-accessibility-by-building-a-quiz/614796cb8086be482d60e0ac.md +++ b/curriculum/challenges/english/14-responsive-web-design-22/learn-accessibility-by-building-a-quiz/614796cb8086be482d60e0ac.md @@ -252,7 +252,7 @@ h2 { border-bottom: 4px solid #dfdfe2; } -p::before { +h3::before { content: "Question #"; } diff --git a/curriculum/challenges/english/14-responsive-web-design-22/learn-accessibility-by-building-a-quiz/6147a14ef5668b5881ef2297.md b/curriculum/challenges/english/14-responsive-web-design-22/learn-accessibility-by-building-a-quiz/6147a14ef5668b5881ef2297.md index d66bf9dbaf1..31513c2e105 100644 --- a/curriculum/challenges/english/14-responsive-web-design-22/learn-accessibility-by-building-a-quiz/6147a14ef5668b5881ef2297.md +++ b/curriculum/challenges/english/14-responsive-web-design-22/learn-accessibility-by-building-a-quiz/6147a14ef5668b5881ef2297.md @@ -241,7 +241,7 @@ h2 { border-bottom: 4px solid #dfdfe2; } -p::before { +h3::before { content: "Question #"; } diff --git a/curriculum/challenges/english/14-responsive-web-design-22/learn-accessibility-by-building-a-quiz/614878f7a412310647873015.md b/curriculum/challenges/english/14-responsive-web-design-22/learn-accessibility-by-building-a-quiz/614878f7a412310647873015.md index 4648563e6b0..fd11cde5198 100644 --- a/curriculum/challenges/english/14-responsive-web-design-22/learn-accessibility-by-building-a-quiz/614878f7a412310647873015.md +++ b/curriculum/challenges/english/14-responsive-web-design-22/learn-accessibility-by-building-a-quiz/614878f7a412310647873015.md @@ -234,7 +234,7 @@ h2 { border-bottom: 4px solid #dfdfe2; } -p::before { +h3::before { content: "Question #"; } diff --git a/curriculum/challenges/english/14-responsive-web-design-22/learn-accessibility-by-building-a-quiz/61487b77d4a37707073a64e5.md b/curriculum/challenges/english/14-responsive-web-design-22/learn-accessibility-by-building-a-quiz/61487b77d4a37707073a64e5.md index 0420616b44e..ee3dc766871 100644 --- a/curriculum/challenges/english/14-responsive-web-design-22/learn-accessibility-by-building-a-quiz/61487b77d4a37707073a64e5.md +++ b/curriculum/challenges/english/14-responsive-web-design-22/learn-accessibility-by-building-a-quiz/61487b77d4a37707073a64e5.md @@ -242,7 +242,7 @@ h2 { border-bottom: 4px solid #dfdfe2; } -p::before { +h3::before { content: "Question #"; } diff --git a/curriculum/challenges/english/14-responsive-web-design-22/learn-accessibility-by-building-a-quiz/61487da611a65307e78d2c20.md b/curriculum/challenges/english/14-responsive-web-design-22/learn-accessibility-by-building-a-quiz/61487da611a65307e78d2c20.md index 3dadd30957c..0357b421528 100644 --- a/curriculum/challenges/english/14-responsive-web-design-22/learn-accessibility-by-building-a-quiz/61487da611a65307e78d2c20.md +++ b/curriculum/challenges/english/14-responsive-web-design-22/learn-accessibility-by-building-a-quiz/61487da611a65307e78d2c20.md @@ -256,7 +256,7 @@ h2 { border-bottom: 4px solid #dfdfe2; } -p::before { +h3::before { content: "Question #"; } diff --git a/curriculum/challenges/english/14-responsive-web-design-22/learn-accessibility-by-building-a-quiz/61487f703571b60899055cf9.md b/curriculum/challenges/english/14-responsive-web-design-22/learn-accessibility-by-building-a-quiz/61487f703571b60899055cf9.md index cd2d1a0d2c8..681d6b3bddd 100644 --- a/curriculum/challenges/english/14-responsive-web-design-22/learn-accessibility-by-building-a-quiz/61487f703571b60899055cf9.md +++ b/curriculum/challenges/english/14-responsive-web-design-22/learn-accessibility-by-building-a-quiz/61487f703571b60899055cf9.md @@ -268,7 +268,7 @@ h2 { border-bottom: 4px solid #dfdfe2; } -p::before { +h3::before { content: "Question #"; } diff --git a/curriculum/challenges/english/14-responsive-web-design-22/learn-accessibility-by-building-a-quiz/614880dc16070e093e29bc56.md b/curriculum/challenges/english/14-responsive-web-design-22/learn-accessibility-by-building-a-quiz/614880dc16070e093e29bc56.md index 3923a938da6..50bc240ff28 100644 --- a/curriculum/challenges/english/14-responsive-web-design-22/learn-accessibility-by-building-a-quiz/614880dc16070e093e29bc56.md +++ b/curriculum/challenges/english/14-responsive-web-design-22/learn-accessibility-by-building-a-quiz/614880dc16070e093e29bc56.md @@ -240,7 +240,7 @@ h2 { } --fcc-editable-region-- -p::before { +h3::before { content: "Question #"; } diff --git a/curriculum/challenges/english/14-responsive-web-design-22/learn-accessibility-by-building-a-quiz/614883b6fa720e09fb167de9.md b/curriculum/challenges/english/14-responsive-web-design-22/learn-accessibility-by-building-a-quiz/614883b6fa720e09fb167de9.md index f2b52e93d2b..e54ab75bba8 100644 --- a/curriculum/challenges/english/14-responsive-web-design-22/learn-accessibility-by-building-a-quiz/614883b6fa720e09fb167de9.md +++ b/curriculum/challenges/english/14-responsive-web-design-22/learn-accessibility-by-building-a-quiz/614883b6fa720e09fb167de9.md @@ -261,7 +261,7 @@ h2 { --fcc-editable-region-- -p::before { +h3::before { content: "Question #"; } diff --git a/curriculum/challenges/english/14-responsive-web-design-22/learn-accessibility-by-building-a-quiz/614884c1f5d6f30ab3d78cde.md b/curriculum/challenges/english/14-responsive-web-design-22/learn-accessibility-by-building-a-quiz/614884c1f5d6f30ab3d78cde.md index 874c9ecc947..99ace754092 100644 --- a/curriculum/challenges/english/14-responsive-web-design-22/learn-accessibility-by-building-a-quiz/614884c1f5d6f30ab3d78cde.md +++ b/curriculum/challenges/english/14-responsive-web-design-22/learn-accessibility-by-building-a-quiz/614884c1f5d6f30ab3d78cde.md @@ -345,7 +345,7 @@ h2 { --fcc-editable-region-- -p::before { +h3::before { content: "Question #"; } diff --git a/curriculum/challenges/english/14-responsive-web-design-22/learn-accessibility-by-building-a-quiz/61488ecfd05e290b5712e6da.md b/curriculum/challenges/english/14-responsive-web-design-22/learn-accessibility-by-building-a-quiz/61488ecfd05e290b5712e6da.md index 3c600239622..e03a00f4b48 100644 --- a/curriculum/challenges/english/14-responsive-web-design-22/learn-accessibility-by-building-a-quiz/61488ecfd05e290b5712e6da.md +++ b/curriculum/challenges/english/14-responsive-web-design-22/learn-accessibility-by-building-a-quiz/61488ecfd05e290b5712e6da.md @@ -267,7 +267,7 @@ input { --fcc-editable-region-- -p::before { +h3::before { content: "Question #"; } diff --git a/curriculum/challenges/english/14-responsive-web-design-22/learn-accessibility-by-building-a-quiz/6148d99cdc7acd0c519862cb.md b/curriculum/challenges/english/14-responsive-web-design-22/learn-accessibility-by-building-a-quiz/6148d99cdc7acd0c519862cb.md index 34934beeaa9..9d8fd3aa862 100644 --- a/curriculum/challenges/english/14-responsive-web-design-22/learn-accessibility-by-building-a-quiz/6148d99cdc7acd0c519862cb.md +++ b/curriculum/challenges/english/14-responsive-web-design-22/learn-accessibility-by-building-a-quiz/6148d99cdc7acd0c519862cb.md @@ -272,7 +272,7 @@ input { --fcc-editable-region-- -p::before { +h3::before { content: "Question #"; } diff --git a/curriculum/challenges/english/14-responsive-web-design-22/learn-accessibility-by-building-a-quiz/6148da157cc0bd0d06df5c0a.md b/curriculum/challenges/english/14-responsive-web-design-22/learn-accessibility-by-building-a-quiz/6148da157cc0bd0d06df5c0a.md index 144ca6b03d9..71dae6bb22d 100644 --- a/curriculum/challenges/english/14-responsive-web-design-22/learn-accessibility-by-building-a-quiz/6148da157cc0bd0d06df5c0a.md +++ b/curriculum/challenges/english/14-responsive-web-design-22/learn-accessibility-by-building-a-quiz/6148da157cc0bd0d06df5c0a.md @@ -281,7 +281,7 @@ input { } --fcc-editable-region-- -p::before { +h3::before { content: "Question #"; } diff --git a/curriculum/challenges/english/14-responsive-web-design-22/learn-accessibility-by-building-a-quiz/6148dc095264000dce348bf5.md b/curriculum/challenges/english/14-responsive-web-design-22/learn-accessibility-by-building-a-quiz/6148dc095264000dce348bf5.md index 734f480dc1d..44d3fa47876 100644 --- a/curriculum/challenges/english/14-responsive-web-design-22/learn-accessibility-by-building-a-quiz/6148dc095264000dce348bf5.md +++ b/curriculum/challenges/english/14-responsive-web-design-22/learn-accessibility-by-building-a-quiz/6148dc095264000dce348bf5.md @@ -304,7 +304,7 @@ input { --fcc-editable-region-- -p::before { +h3::before { content: "Question #"; } diff --git a/curriculum/challenges/english/14-responsive-web-design-22/learn-accessibility-by-building-a-quiz/6148dcaaf2e8750e6cb4501a.md b/curriculum/challenges/english/14-responsive-web-design-22/learn-accessibility-by-building-a-quiz/6148dcaaf2e8750e6cb4501a.md index 1f443fe6d15..11d3f5b243d 100644 --- a/curriculum/challenges/english/14-responsive-web-design-22/learn-accessibility-by-building-a-quiz/6148dcaaf2e8750e6cb4501a.md +++ b/curriculum/challenges/english/14-responsive-web-design-22/learn-accessibility-by-building-a-quiz/6148dcaaf2e8750e6cb4501a.md @@ -7,38 +7,38 @@ dashedName: step-59 # --description-- -Make the paragraph elements appear as a higher priority, with the following CSS properties: +Make the `h3` elements appear as a higher priority, with the following CSS properties: ```css margin-top: 5px; padding-left: 15px; -font-size: 20px; +font-size: 22px; ``` # --hints-- -You should use the `p` element selector. +You should use the `h3` element selector. ```js -assert.exists(new __helpers.CSSHelp(document).getStyle('p')); +assert.exists(new __helpers.CSSHelp(document).getStyle('h3')); ``` -You should give the `p` element a `margin-top` of `5px`. +You should give the `h3` element a `margin-top` of `5px`. ```js -assert.equal(new __helpers.CSSHelp(document).getStyle('p')?.marginTop, '5px'); +assert.equal(new __helpers.CSSHelp(document).getStyle('h3')?.marginTop, '5px'); ``` -You should give the `p` element a `padding-left` of `15px`. +You should give the `h3` element a `padding-left` of `15px`. ```js -assert.equal(new __helpers.CSSHelp(document).getStyle('p')?.paddingLeft, '15px'); +assert.equal(new __helpers.CSSHelp(document).getStyle('h3')?.paddingLeft, '15px'); ``` -You should give the `p` element a `font-size` of `20px`. +You should give the `h3` element a `font-size` of `22px`. ```js -assert.equal(new __helpers.CSSHelp(document).getStyle('p')?.fontSize, '20px'); +assert.equal(new __helpers.CSSHelp(document).getStyle('h3')?.fontSize, '22px'); ``` # --seed-- @@ -297,7 +297,7 @@ input { --fcc-editable-region-- -p::before { +h3::before { content: "Question #"; } diff --git a/curriculum/challenges/english/14-responsive-web-design-22/learn-accessibility-by-building-a-quiz/6148dd31d210990f0fb140f8.md b/curriculum/challenges/english/14-responsive-web-design-22/learn-accessibility-by-building-a-quiz/6148dd31d210990f0fb140f8.md index fd1982e6443..bdd7e1899b3 100644 --- a/curriculum/challenges/english/14-responsive-web-design-22/learn-accessibility-by-building-a-quiz/6148dd31d210990f0fb140f8.md +++ b/curriculum/challenges/english/14-responsive-web-design-22/learn-accessibility-by-building-a-quiz/6148dd31d210990f0fb140f8.md @@ -283,13 +283,13 @@ input { padding-top: 5px; } -p { +h3 { margin-top: 5px; padding-left: 15px; - font-size: 20px; + font-size: 22px; } -p::before { +h3::before { content: "Question #"; } diff --git a/curriculum/challenges/english/14-responsive-web-design-22/learn-accessibility-by-building-a-quiz/6148defa9c01520fb9d178a0.md b/curriculum/challenges/english/14-responsive-web-design-22/learn-accessibility-by-building-a-quiz/6148defa9c01520fb9d178a0.md index f1bb2b9b7e2..1f90758f574 100644 --- a/curriculum/challenges/english/14-responsive-web-design-22/learn-accessibility-by-building-a-quiz/6148defa9c01520fb9d178a0.md +++ b/curriculum/challenges/english/14-responsive-web-design-22/learn-accessibility-by-building-a-quiz/6148defa9c01520fb9d178a0.md @@ -289,13 +289,13 @@ input { padding-top: 5px; } -p { +h3 { margin-top: 5px; padding-left: 15px; - font-size: 20px; + font-size: 22px; } -p::before { +h3::before { content: "Question #"; } diff --git a/curriculum/challenges/english/14-responsive-web-design-22/learn-accessibility-by-building-a-quiz/6148dfab9b54c110577de165.md b/curriculum/challenges/english/14-responsive-web-design-22/learn-accessibility-by-building-a-quiz/6148dfab9b54c110577de165.md index 264610366e7..e20118289f6 100644 --- a/curriculum/challenges/english/14-responsive-web-design-22/learn-accessibility-by-building-a-quiz/6148dfab9b54c110577de165.md +++ b/curriculum/challenges/english/14-responsive-web-design-22/learn-accessibility-by-building-a-quiz/6148dfab9b54c110577de165.md @@ -321,13 +321,13 @@ input { padding-top: 5px; } -p { +h3 { margin-top: 5px; padding-left: 15px; - font-size: 20px; + font-size: 22px; } -p::before { +h3::before { content: "Question #"; } diff --git a/curriculum/challenges/english/14-responsive-web-design-22/learn-accessibility-by-building-a-quiz/6148e0bcc13efd10f7d7a6a9.md b/curriculum/challenges/english/14-responsive-web-design-22/learn-accessibility-by-building-a-quiz/6148e0bcc13efd10f7d7a6a9.md index 49d46e4b528..2bd4b6386a3 100644 --- a/curriculum/challenges/english/14-responsive-web-design-22/learn-accessibility-by-building-a-quiz/6148e0bcc13efd10f7d7a6a9.md +++ b/curriculum/challenges/english/14-responsive-web-design-22/learn-accessibility-by-building-a-quiz/6148e0bcc13efd10f7d7a6a9.md @@ -287,13 +287,13 @@ input { padding-top: 5px; } -p { +h3 { margin-top: 5px; padding-left: 15px; - font-size: 20px; + font-size: 22px; } -p::before { +h3::before { content: "Question #"; } diff --git a/curriculum/challenges/english/14-responsive-web-design-22/learn-accessibility-by-building-a-quiz/6148e161ecec9511941f8833.md b/curriculum/challenges/english/14-responsive-web-design-22/learn-accessibility-by-building-a-quiz/6148e161ecec9511941f8833.md index 918c9fc8819..a9bc6d9f787 100644 --- a/curriculum/challenges/english/14-responsive-web-design-22/learn-accessibility-by-building-a-quiz/6148e161ecec9511941f8833.md +++ b/curriculum/challenges/english/14-responsive-web-design-22/learn-accessibility-by-building-a-quiz/6148e161ecec9511941f8833.md @@ -301,13 +301,13 @@ input { padding-top: 5px; } -p { +h3 { margin-top: 5px; padding-left: 15px; - font-size: 20px; + font-size: 22px; } -p::before { +h3::before { content: "Question #"; } diff --git a/curriculum/challenges/english/14-responsive-web-design-22/learn-accessibility-by-building-a-quiz/6148e28706b34912340fd042.md b/curriculum/challenges/english/14-responsive-web-design-22/learn-accessibility-by-building-a-quiz/6148e28706b34912340fd042.md index 2236dca2f32..5772d45f52d 100644 --- a/curriculum/challenges/english/14-responsive-web-design-22/learn-accessibility-by-building-a-quiz/6148e28706b34912340fd042.md +++ b/curriculum/challenges/english/14-responsive-web-design-22/learn-accessibility-by-building-a-quiz/6148e28706b34912340fd042.md @@ -299,13 +299,13 @@ input { padding-top: 5px; } -p { +h3 { margin-top: 5px; padding-left: 15px; - font-size: 20px; + font-size: 22px; } -p::before { +h3::before { content: "Question #"; } diff --git a/curriculum/challenges/english/14-responsive-web-design-22/learn-accessibility-by-building-a-quiz/6148e335c1edd512d00e4691.md b/curriculum/challenges/english/14-responsive-web-design-22/learn-accessibility-by-building-a-quiz/6148e335c1edd512d00e4691.md index 900212e2caa..1ae21b39bde 100644 --- a/curriculum/challenges/english/14-responsive-web-design-22/learn-accessibility-by-building-a-quiz/6148e335c1edd512d00e4691.md +++ b/curriculum/challenges/english/14-responsive-web-design-22/learn-accessibility-by-building-a-quiz/6148e335c1edd512d00e4691.md @@ -281,13 +281,13 @@ input { padding-top: 5px; } -p { +h3 { margin-top: 5px; padding-left: 15px; - font-size: 20px; + font-size: 22px; } -p::before { +h3::before { content: "Question #"; } diff --git a/curriculum/challenges/english/14-responsive-web-design-22/learn-accessibility-by-building-a-quiz/6148e41c728f65138addf9cc.md b/curriculum/challenges/english/14-responsive-web-design-22/learn-accessibility-by-building-a-quiz/6148e41c728f65138addf9cc.md index ef2a85e24c3..93cc68e96cb 100644 --- a/curriculum/challenges/english/14-responsive-web-design-22/learn-accessibility-by-building-a-quiz/6148e41c728f65138addf9cc.md +++ b/curriculum/challenges/english/14-responsive-web-design-22/learn-accessibility-by-building-a-quiz/6148e41c728f65138addf9cc.md @@ -299,13 +299,13 @@ input { padding-top: 5px; } -p { +h3 { margin-top: 5px; padding-left: 15px; - font-size: 20px; + font-size: 22px; } -p::before { +h3::before { content: "Question #"; } diff --git a/curriculum/challenges/english/14-responsive-web-design-22/learn-accessibility-by-building-a-quiz/6148e5aeb102e3142de026a2.md b/curriculum/challenges/english/14-responsive-web-design-22/learn-accessibility-by-building-a-quiz/6148e5aeb102e3142de026a2.md index ed2e81ee6a5..b51d2328c5f 100644 --- a/curriculum/challenges/english/14-responsive-web-design-22/learn-accessibility-by-building-a-quiz/6148e5aeb102e3142de026a2.md +++ b/curriculum/challenges/english/14-responsive-web-design-22/learn-accessibility-by-building-a-quiz/6148e5aeb102e3142de026a2.md @@ -301,13 +301,13 @@ input { padding-top: 5px; } -p { +h3 { margin-top: 5px; padding-left: 15px; font-size: 20px; } -p::before { +h3::before { content: "Question #"; } @@ -624,13 +624,13 @@ input { padding-top: 5px; } -p { +h3 { margin-top: 5px; padding-left: 15px; - font-size: 20px; + font-size: 22px; } -p::before { +h3::before { content: "Question #"; }