我正在尝试做一些比引导标准媒体查询更详细的定制。这是我用来定位 iPhone 5 Landscape Orientation 浏览器的代码:
/* iPhone 5 in landscape -----------*/
@media only screen and (min-width : 320px)
and (max-width : 568px)
and (orientation : landscape) {
body {
background-color:khaki;
}
}
但它不工作!你能告诉我我做错了什么吗?