Problem Statement
Which CSS ensures images resize within their container?
Explanation
Using `max-width: 100%` ensures images shrink to fit container width while maintaining aspect ratio. Essential for responsive web design.
Code Solution
SolutionRead Only
img { max-width: 100%; height: auto; }