Question: Which CSS selector can you use to select all elements on your page associated with the two classes header and clear?

  1. `."header clear" {}`
  2. `header#clear {}`
  3. `.header.clear {}`
  4. `.header clear {}`

Answer: The correct answer of the above question is Option C:`.header.clear {}`