Problem Statement
In a mobile-first approach, which condition should be used for responsive scaling?
Explanation
Mobile-first design starts with base mobile styles and adds rules for larger devices using `min-width`. This ensures smaller screens load faster with fewer overrides.
Code Solution
SolutionRead Only
@media (min-width: 768px) { .container { width: 80%; } }