媒体查询不适用于Ipad

时间:2013-07-25 09:03:58

标签: css responsive-design media-queries

我是使用媒体查询的新手。 我正在一个网站上工作,我希望它能在Ipad上正确显示。

I have tried this,

//css use for Ipad

   @media only screen 
    and (min-device-width : 768px) 
     and (max-device-width : 1024px) {
      .overlayBox{
            width:200px;
         }
  }


// css use for Window
    .overlayBox{
         width:450px;
  }

但我遇到的问题是媒体查询对Ipad不起作用。需要窗口css。 我做错了吗?

1 个答案:

答案 0 :(得分:1)

使用device-widthdevice-height定位特定设备,然后使用orientation定位纵向或横向。

@media only screen and (device-width: 768px) and (device-height: 1024px) and (orientation: portrait) {
    .myrules { 
        width: 200px;
    }
}