From 0bfa871c763dc08da5f906346a7cc5499f15f3f1 Mon Sep 17 00:00:00 2001 From: Egregious-Egg <41522783+Egregious-Egg@users.noreply.github.com> Date: Fri, 18 Jan 2019 15:17:01 -0500 Subject: [PATCH] Fixed Misspellings (#28678) "nth-child" was misspelled as "nth-childe" in the last three examples --- guide/english/css/css3-nth-child-selector/index.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/guide/english/css/css3-nth-child-selector/index.md b/guide/english/css/css3-nth-child-selector/index.md index 36b7529dba..afe7f8af71 100644 --- a/guide/english/css/css3-nth-child-selector/index.md +++ b/guide/english/css/css3-nth-child-selector/index.md @@ -24,7 +24,7 @@ The patterns accepted by `nth-child` can come in the form of keywords or an equa Odd returns all odd elements of a given type. ```css - a:nth-childe(odd) { + a:nth-child(odd) { /* CSS goes here */ } ``` @@ -34,7 +34,7 @@ Odd returns all odd elements of a given type. Even returns all even elements of a given type. ```css - a:nth-childe(even) { + a:nth-child(even) { /* CSS goes here */ } ``` @@ -45,7 +45,7 @@ Returns all elements matching the equation An+B for every positive integer value For example, the following will match every 3rd anchor element: ```css - a:nth-childe(3n) { + a:nth-child(3n) { /* CSS goes here */ } ``` @@ -55,4 +55,4 @@ For example, the following will match every 3rd anchor element: MDN Documentation CSS Tricks - nth child selector CSS Tricks - nth child tester -W3Scools - nth child selector \ No newline at end of file +W3Scools - nth child selector