Given the CSS below, which HTML will have blue text?

Which symbol is used to indicate a class selector?

What does the selector in the following CSS mean?

True or False: When writing a decendant combinator, you can mix types of selectors, such as using a class with an element.

When writing a selector list for multiple selectors, how are the different selectors separated?

To select both any h2 element inside of a section element and any p element inside of a section element, how would you write the selector list?

True or False: To select the grandchild of a particular element, you must write the grandparent, the parent, and the child as part of the selector. E.g. nav li p.

What does [open] select?

True or False: An attribute selector may or may not include a value, depending on the attribute.