1
  1. <meta name="viewport" content="width=600,initial-scale = 2.3,user-scalable=no">数据在 iPhone / iPad 邮件中不起作用?

  2. 如何检测 iPhone 邮件中的方向?

  3. iPhone / iPad 邮件中是否有关于 HTML 和 CSS 的文档?

4

1 回答 1

1

您可以使用CSS 3 媒体查询来检测 iPhone / iPad 的方向。

<!-- css -->
@media only screen and (max-device-width: 1024px) and (orientation:portrait) { 
    .landscape { display: none; }
}
@media only screen and (max-device-width: 1024px) and (orientation:landscape) { 
    .portrait { display: none; }
}

<!-- example markup -->
<h1 class="portrait">Your device orientation is "portrait"<h1>
<h1 class="landscape">Your device orientation is "landscape"<h1>
于 2012-07-03T03:39:40.593 回答