Media query to target iphone/mobile/ipad

后端 未结 3 1546
孤城傲影
孤城傲影 2021-02-04 23:06

I am using media query to target iphone/ipad/mobile.

I have written the following media query.

But my problem is if i write css in media query of mobile \'max-d

3条回答
  •  死守一世寂寞
    2021-02-04 23:42

    Try with below media query and meta tag

    /* For mobile : like samsung grand(480 * 800): */
    @media screen and (max-width : 480px){}
    
    
    /* For iphone: */
    @media screen and (max-width : 320px){} 
    
    
    /* For ipad: */
    @media screen and (max-width : 768px){} 
    

    Additionally. change your meta tag:

    
    

提交回复
热议问题