#css Child Selector (Child Selector) A child selector selects the child elements of a particular element. For example, the following selects blockqoute among the child elements of the div element. div > blockquote The caveat is that you only select elements that are one step down. In other words, choose blockquote when: ... Don't choose blockquote if: ... #css grammar #css basic #css tag #css ch..