Problem Statement
Which query targets devices held horizontally?
Explanation
Orientation media features let you apply styles based on device orientation: `landscape` (width > height) or `portrait` (height > width).
Code Solution
SolutionRead Only
@media (orientation: landscape) { img { height: 60vh; } }