Complete the code to select all p elements inside any div.
div [1] p { color: blue; }The space between selectors means descendant. It selects all p elements inside div, no matter how deep.
Complete the code to select all span elements inside any section.
section[1]span { font-weight: bold; }The space means select all span elements inside section, no matter how deep.
Fix the error in the selector to select all li elements inside any ul.
ul[1]li { list-style-type: none; }li.The space is needed to select all li elements inside ul, not just direct children or siblings.
Fill both blanks to select all em elements inside any article.
article[1]em { font-style: italic; } /* [2] selector */
The space is the descendant selector, which selects all em inside article. The comment explains this.
Fill all three blanks to select all strong elements inside any nav and add a comment naming the selector.
nav[1]strong { color: red; } /* [2] selector used here to select [3] */
The space is the descendant selector symbol. The comment names the selector and explains it selects all nested strong elements inside nav.