在打印中使用CSS检测页面方向

时间:2015-03-24 21:52:38

标签: css printing orientation

我想使用CSS样式来检测打印中的页面方向,然后在用户选择不同的方向(横向或纵向)时应用不同的样式。

@media print{ /*portrait*/  /*landscape*/}

有没有办法做到这一点?

由于

1 个答案:

答案 0 :(得分:4)

使用orientation: ...媒体选择器。这是一个例子:

@media print and (orientation: portrait) {
    /* Your code for portrait orientation */
}
@media print and (orientation: landscape) {
    /* Your code for landscape orientation */
}