Home / CSS Tips Generated By ChatGPT / Responsive Media Queries for Device Orientation in CSS Apply different styles based on the orientation (landscape or portrait) of the device. Source Code @media (orientation: landscape) { body { background-color: lightblue; } }