Media Queries: orientation

语法:

orientation:portrait | landscape

接受min/max前缀:否

取值:

portrait:
竖屏,指定输出设备中的页面可见区域高度大于或等于宽度
landscape:
横屏,除portrait值情况外,都是landscape

说明:

定义输出设备中的页面可见区域高度是否大于或等于宽度。可用于检测设备是横屏还是竖屏
  • 本特性不接受minmax前缀。

    简单列举几个应用示例:

    @media screen and (orientation: portrait){ … } @import url(example.css) screen and (orientation: landscape);

兼容性:

  • 浅绿 = 支持
  • 红色 = 不支持
  • 粉色 = 部分支持
Values IE Firefox Chrome Safari Opera iOS Safari Android Browser Android Chrome
Basic Support 8.0 40.0 40.0+ 8.0+ 40.0+ 8.0+ 4.4+ 28.0+
9.0+

示例: