Question: How would you make the first letter of every paragraph on the page red?

  1. p::first-letter { color: red; }
  2. p:first-letter { color: red; }
  3. first-letter::p { color: red; }
  4. first-letter:p { color: red; }

Answer: The correct answer of the above question is Option A:p::first-letter { color: red; }