A. |
Use the :root selector. |
B. |
Use the :first-child, :last:child, :only-child, or :only-of-type selectors. |
C. |
Use the :nth-child, :nth-last-child, :nth-of-type, or :nth-last-of-type selectors. |
D. |
Use the :enabled or :disabled selectors. |
Answer: Option C
Explanation:
Select a child at a specific index.Use the :nth-child, :nth-last-child, :nth-of-type, or :nth-last-of-type selectors.
|