1

我试图用我的媒体查询来定位 iphone 5,但横向背景没有出现。由于我没有任何用于视网膜显示器的特殊图形,我想知道我是否可以对所有媒体查询使用相同的图形。如何定位 iPhone 5 横向?

    @media only screen and (max-width: 480px)
and (orientation : landscape)
{

  #homepage{ 
     background: url('images/480x320_Horizontal.jpg') no-repeat fixed #00314d;
   }
}
4

1 回答 1

2

使用元标记强制 iPhone 将视口呈现为设备宽度。

<meta name="viewport" content="width=device-width, minimum-scale=1.0, maximum-scale=1.0">

现在使用媒体查询来设置横向模式的样式,对于> 320px的iphone;

@media screen and (min-width: 321px){
    /*Style goes here*/
}
于 2012-12-12T15:06:50.587 回答