1.7 KiB
		
	
	
	
	
	
	
	
			
		
		
	
	
			1.7 KiB
		
	
	
	
	
	
	
	
title, localeTitle
| title | localeTitle | 
|---|---|
| CSS3 Nth Child Selector | CSS3 N-й детский селектор | 
CSS3 N-й детский селектор
Селектор nth-child - это css psuedo-class, в котором используется шаблон, позволяющий сопоставить один или несколько элементов относительно их положения среди братьев и сестер.
Синтаксис
`` `CSS a: nth-child (pattern) { / * Css идет здесь * / }
### Pattern 
 
 The patterns accepted by `nth-child` can come in the form of keywords or an equation of the form An+B. 
 
 #### Keywords 
 
 ##### Odd 
 
 Odd returns all odd elements of a given type. 
CSS a: nth-childe (нечетный) { / * CSS идет здесь * / }
##### Even 
 
 Even returns all even elements of a given type. 
CSS a: nth-childe (even) { / * CSS идет здесь * / }
#### An+B 
 
 Returns all elements matching the equation An+B for every positive integer value of n (in addition to 0). 
 
 For example, the following will match every 3rd anchor element: 
CSS a: nth-childe (3n) { / * CSS идет здесь * / } `` `
Дополнительная информация:
Документация MDN CSS-трюки - n-й дочерний селектор CSS Tricks - n-й детский тестер W3Scools - n-й дочерний селектор