1

我是使用媒体查询的新手。我正在开发一个网站,我希望它能够正确显示在 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。难道我做错了什么?

4

1 回答 1

1

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

@media only screen and (device-width: 768px) and (device-height: 1024px) and (orientation: portrait) {
    .myrules { 
        width: 200px;
    }
}
于 2013-07-25T09:29:21.093 回答