Fixed spelling 'child' (#28697)

pull/28500/head^2
veera-potnis 2019-02-20 04:02:03 -05:00 committed by Gregory Gubarev
parent e68e75639c
commit 59aa8a4a86
1 changed files with 3 additions and 3 deletions

View File

@ -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 идет здесь \* / } \`\` \`
### Дополнительная информация: