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.