Could anyone explain to me what this means?
@media only screen and (-webkit-min-device-pixel-ratio: 1.5),
only screen and (min-resolution: 1.5dppx),
only screen and (min-resolution: 144dpi)
and (min-width: 38em) {
/*Styles*/
}
There is a style that I would like to apply for retina only on resolutions with at least 38em width (both conditions must be true). But it doesn't seem to be working when I insert it in the above block.