My Development Notes


Tag: descendant combinator

  • What is a Descendant Combinator in CSS?

    What is a Descendant Combinator in CSS?

    Descendant combinator is a parent-and-child selector in CSS. In this, a child element will be selected only when there’s a parent element present. Another way to put it is that it will select a child element only if it’s nested inside a parent (or ancestor) element, no matter how deep down the nested element is.…