Problem Statement
A flex item is shrinking undesirably. How will you prevent that?
Explanation
By default, flex items can shrink (`flex-shrink: 1`). To prevent shrinking, set `flex-shrink: 0` or use shorthand like `flex: 1 0 auto` or `flex: 0 0 auto` depending on desired behavior. You can also set a `min-width` to constrain shrinkage. Ensure you understand the combined effect of grow, shrink, and basis. :contentReference[oaicite:11]{index=11}
Code Solution
SolutionRead Only
.item { flex-shrink: 0; }