Retina iPad Specific CSS

后端 未结 3 1685
隐瞒了意图╮
隐瞒了意图╮ 2020-12-08 03:23

I\'m designing a responsive site that will look different on mobile devices. I have three separate media queries in my css plus a query for retina display(s).



        
3条回答
  •  一整个雨季
    2020-12-08 04:03

    Try:

    @media only screen 
      and (min-device-width: 1536px)
      and (max-device-width: 2048px)
      and (orientation : landscape)
      and (-webkit-min-device-pixel-ratio: 2) {
          // Retina iPad specific CSS
    }
    

提交回复
热议问题