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
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.