CSS media queries for Samsung s6

前端 未结 3 1406
既然无缘
既然无缘 2021-01-11 12:51

Help please. Can any body tell me about media queries in CSS for Samsung s6 to be more responsive?

@media only screen and 
(min-device-width : 360px) and 
(max-de         


        
3条回答
  •  旧时难觅i
    2021-01-11 13:25

    I've try this :

    @media screen 
      and (device-width: 360px) 
      and (device-height: 640px)
      and (-webkit-min-device-pixel-ratio : 4) 
      and (-webkit-device-pixel-ratio : 4)
      and (orientation: portrait) {
    
    /* CSS GO HERE */
    
    }
    

    And it's seems to work. For S6 and S7. I think it's because the Samsung S6 and S7 dimensions are 1440x2560 :

    1440 / 4 = 360
    2560 / 4 = 640

    Hope this help.

提交回复
热议问题