128k views
2 votes
Descendant selectors

1
2
3
nav a{
....
}
are more specific than child selectors
nav>a{
....
}
A.True
B.False

User Nglee
by
8.1k points

1 Answer

1 vote

Final answer:

Descendant selectors are less specific than child selectors because they select all elements that are descendants, not just immediate children.

Step-by-step explanation:

Descendant selectors are CSS selectors that select all elements that are descendants of a specified element. For example, 'nav a' selects all links inside a 'nav' element. On the other hand, child selectors select elements that are direct children of a specified element. For example, 'nav > a' selects only the immediate children links of a 'nav' element.



Therefore, the statement is False. Descendant selectors are less specific than child selectors because they match any element that is a descendant, not just immediate children.

User CharlieH
by
7.8k points