メディアクエリでiphone5をターゲットにしようとしましたが、横向きの背景が表示されません。Retinaディスプレイ用の特別なグラフィックがないので、メディアクエリですべてに同じグラフィックを使用できるかどうかを確認したいと思いました。iPhone 5の横向きをターゲットにするにはどうすればよいですか?
@media only screen and (max-width: 480px)
and (orientation : landscape)
{
#homepage{
background: url('images/480x320_Horizontal.jpg') no-repeat fixed #00314d;
}
}