Question: Which line of code, if applied to all flex items in a flex container, would cause each flex item to take up an equal share of the total width of the container? For example, if there are four items, they would get 25% of each/

  1. `flex: 1 0 0;`
  2. `flex: initial;`
  3. `flex: 1 1 auto;`
  4. `flex: 1 0 auto;`

Answer: The correct answer of the above question is Option C:`flex: 1 1 auto;`