Question: When using flexbox, the "justify-content" property can be used to distribute the space between the flex items along the main axis. Which value should be used to evenly distribute the flex items within the container shown below?

  1. justify-content: space-around;
  2. justify-content: center;
  3. justify-content: auto;
  4. justify-content: space-between;

Answer: The correct answer of the above question is Option A:justify-content: space-around;