我试图用我的媒体查询来定位 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;
}
}