代码示例:(标识:cssref_media_orientation)
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<style>
body {
  background-color: lightgreen;
}

@media only screen and (orientation: landscape) {
  body {
    background-color: lightblue;
  }
}
</style>
</head>
<body>

<p>请调整浏览器窗口大小来查看效果:如果文档宽度大于高度,则背景色为浅蓝色,否则为浅绿色。</p>

</body>
</html>
运行结果: