min-width media query not working on ipad?

后端 未结 6 715
被撕碎了的回忆
被撕碎了的回忆 2021-02-05 20:43

Why isnt the following media query being picked up on iPads in landscape mode?

@media all and (min-device-width: 1000px) {
    css here
}

Or

6条回答
  •  爱一瞬间的悲伤
    2021-02-05 21:30

    If found this works great for the new iPad

    @media screen and (orientation:landscape) and (min-device-height:1000px) and (-webkit-min-device-pixel-ratio : 2) {
        * {
            color:white;
            background-color:red;
        }
    }
    

提交回复
热议问题