From 59aa8a4a86c73e45dc601b7ec272f55da9c022e3 Mon Sep 17 00:00:00 2001 From: veera-potnis <44449313+veera-potnis@users.noreply.github.com> Date: Wed, 20 Feb 2019 04:02:03 -0500 Subject: [PATCH] Fixed spelling 'child' (#28697) --- guide/russian/css/css3-nth-child-selector/index.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/guide/russian/css/css3-nth-child-selector/index.md b/guide/russian/css/css3-nth-child-selector/index.md index 58feb75f7a3..9a6d12d05b8 100644 --- a/guide/russian/css/css3-nth-child-selector/index.md +++ b/guide/russian/css/css3-nth-child-selector/index.md @@ -21,14 +21,14 @@ localeTitle: CSS3 N-й детский селектор Odd returns all odd elements of a given type. ``` -CSS a: nth-childe (нечетный) { / \* CSS идет здесь \* / } +CSS a: nth-child (нечетный) { / \* CSS идет здесь \* / } ``` ##### Even Even returns all even elements of a given type. ``` -CSS a: nth-childe (even) { / \* CSS идет здесь \* / } +CSS a: nth-child (even) { / \* CSS идет здесь \* / } ``` #### An+B @@ -37,7 +37,7 @@ CSS a: nth-childe (even) { / \* CSS идет здесь \* / } For example, the following will match every 3rd anchor element: ``` -CSS a: nth-childe (3n) { / \* CSS идет здесь \* / } \`\` \` +CSS a: nth-child (3n) { / \* CSS идет здесь \* / } \`\` \` ### Дополнительная информация: