From b24968a96810f618d831410ac90a0bc452ebde50 Mon Sep 17 00:00:00 2001 From: SomeDer <48731521+SomeDer@users.noreply.github.com> Date: Fri, 23 Aug 2019 06:37:21 +0100 Subject: [PATCH] remove misused tags --- .../basic-css/create-a-custom-css-variable.english.md | 2 +- ...-notation-to-specify-the-margin-of-an-element.english.md | 2 +- .../use-css-selectors-to-style-elements.english.md | 6 +++--- .../basic-css/use-hex-code-for-specific-colors.english.md | 4 ++-- .../create-a-bulleted-unordered-list.english.md | 2 +- .../create-a-set-of-checkboxes.english.md | 2 +- .../create-a-set-of-radio-buttons.english.md | 2 +- .../basic-html-and-html5/create-an-ordered-list.english.md | 2 +- .../fill-in-the-blank-with-placeholder-text.english.md | 4 ++-- .../say-hello-to-html-elements.english.md | 4 ++-- .../access-array-data-with-indexes.english.md | 2 +- .../comparison-with-the-equality-operator.english.md | 2 +- .../catch-off-by-one-errors-when-using-indexing.english.md | 2 +- .../caesars-cipher.english.md | 2 +- .../create-a-method-on-an-object.english.md | 4 ++-- .../inherit-behaviors-from-a-supertype.english.md | 2 +- ...add-common-behavior-between-unrelated-objects.english.md | 2 +- .../use-inheritance-so-you-dont-repeat-yourself.english.md | 2 +- .../match-letters-of-the-alphabet.english.md | 2 +- ...-single-character-with-multiple-possibilities.english.md | 2 +- .../positive-and-negative-lookahead.english.md | 6 +++--- .../reuse-patterns-using-capture-groups.english.md | 2 +- .../specify-upper-and-lower-number-of-matches.english.md | 2 +- ...onsive-design-with-bootstrap-fluid-containers.english.md | 2 +- .../jquery/clone-an-element-using-jquery.english.md | 2 +- ...get-html-elements-with-selectors-using-jquery.english.md | 4 ++-- .../react/introducing-inline-styles.english.md | 2 +- ...-ternary-expression-for-conditional-rendering.english.md | 2 +- .../use-array.map-to-dynamically-render-elements.english.md | 2 +- .../sass/nest-css-with-sass.english.md | 2 +- .../learn-about-svg-in-d3.english.md | 2 +- 31 files changed, 40 insertions(+), 40 deletions(-) diff --git a/curriculum/challenges/english/01-responsive-web-design/basic-css/create-a-custom-css-variable.english.md b/curriculum/challenges/english/01-responsive-web-design/basic-css/create-a-custom-css-variable.english.md index c63c2b3762..81bfbd8d37 100644 --- a/curriculum/challenges/english/01-responsive-web-design/basic-css/create-a-custom-css-variable.english.md +++ b/curriculum/challenges/english/01-responsive-web-design/basic-css/create-a-custom-css-variable.english.md @@ -8,7 +8,7 @@ forumTopicId: 301086 ## Description
-To create a CSS variable, you just need to give it a name with two dashes in front of it and assign it a value like this: +To create a CSS variable, you just need to give it a name with two dashes in front of it and assign it a value like this: ```css --penguin-skin: gray; diff --git a/curriculum/challenges/english/01-responsive-web-design/basic-css/use-clockwise-notation-to-specify-the-margin-of-an-element.english.md b/curriculum/challenges/english/01-responsive-web-design/basic-css/use-clockwise-notation-to-specify-the-margin-of-an-element.english.md index 4522885fc0..565ec4e833 100644 --- a/curriculum/challenges/english/01-responsive-web-design/basic-css/use-clockwise-notation-to-specify-the-margin-of-an-element.english.md +++ b/curriculum/challenges/english/01-responsive-web-design/basic-css/use-clockwise-notation-to-specify-the-margin-of-an-element.english.md @@ -16,7 +16,7 @@ These four values work like a clock: top, right, bottom, left, and will produce ## Instructions
-Use Clockwise Notation to give the element with the blue-box class a margin of 40px on its top and left side, but only 20px on its bottom and right side. +Use Clockwise Notation to give the element with the blue-box class a margin of 40px on its top and left side, but only 20px on its bottom and right side.
## Tests diff --git a/curriculum/challenges/english/01-responsive-web-design/basic-css/use-css-selectors-to-style-elements.english.md b/curriculum/challenges/english/01-responsive-web-design/basic-css/use-css-selectors-to-style-elements.english.md index 68fce5c294..9b5c4ece7a 100644 --- a/curriculum/challenges/english/01-responsive-web-design/basic-css/use-css-selectors-to-style-elements.english.md +++ b/curriculum/challenges/english/01-responsive-web-design/basic-css/use-css-selectors-to-style-elements.english.md @@ -8,8 +8,8 @@ forumTopicId: 18349 ## Description
-With CSS, there are hundreds of CSS properties that you can use to change the way an element looks on your page. -When you entered <h2 style="color: red;">CatPhotoApp</h2>, you were styling that individual h2 element with inline CSS, which stands for Cascading Style Sheets. +With CSS, there are hundreds of CSS properties that you can use to change the way an element looks on your page. +When you entered <h2 style="color: red;">CatPhotoApp</h2>, you were styling that individual h2 element with inline CSS, which stands for Cascading Style Sheets. That's one way to specify the style of an element, but there's a better way to apply CSS. At the top of your code, create a style block like this: @@ -18,7 +18,7 @@ At the top of your code, create a style block like this: ``` -Inside that style block, you can create a CSS selector for all h2 elements. For example, if you wanted all h2 elements to be red, you would add a style rule that looks like this: +Inside that style block, you can create a CSS selector for all h2 elements. For example, if you wanted all h2 elements to be red, you would add a style rule that looks like this: ```html