Question: Suppose you want to have a list of items (.item) displayed in a row and in reverse order using flexbox. What is the error in the CSS below?

  1. The value for flex-direction should be reverse-row.
  2. The .container element should have a property of flex: display.
  3. The flex-direction property should be declared in the container.
  4. The display value should be flex-inline to display the items in a row.

Answer: The correct answer of the above question is Option C:The flex-direction property should be declared in the container.