nth of type 282 29 3abefore

Solutions on MaxInterview for nth of type 282 29 3abefore by the best coders in the world

showing results for - "nth of type 282 29 3abefore"
Noemi
17 Aug 2020
1p:nth-of-type(2) ==> Selects every <p> element that is the second p element of its parent:
2
3Example
4Specify a background color for every <p> element that is the second p element of its parent:
5
6p:nth-of-type(2) {
7  background: red;
8}