iPad browser WIDTH & HEIGHT standard

后端 未结 3 1361
渐次进展
渐次进展 2020-12-07 06:47

Does anyone know the safest width and height for the BODY when viewing any web page on the iPad? I want to avoid the scrollbars as much as possible.

Thanks.

3条回答
  •  醉话见心
    2020-12-07 07:19

    You can try this:

        /*iPad landscape oriented styles */
    
        @media only screen and (device-width:768px)and (orientation:landscape){
            .yourstyle{
    
            }
    
        }
    
        /*iPad Portrait oriented styles */
    
        @media only screen and (device-width:768px)and (orientation:portrait){
            .yourstyle{
    
            }
        }
    

提交回复
热议问题